Skip to content

Commit

Permalink
github-action/macos build fix
Browse files Browse the repository at this point in the history
Github-action macos build started spitting:
```
Run actions/setup-python@v1
  with:
    python-version: 3.x
    architecture: x64
  env:
    changed_file_list: /var/folders/3m/p59k4qdj0f17st0gn2cmj3640000gn/T/tmp.b0uhtmFUzp
    rebuild:        1
Error: Version 3.x with arch x64 not found
Available versions:
```
Similar with actions/setup-python#162

Signed-off-by: MyungJoo Ham <myungjoo.ham@samsung.com>
  • Loading branch information
myungjoo authored and jaeyun-jung committed Apr 29, 2024
1 parent d682aa6 commit 29deacb
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/macos.yaml
Expand Up @@ -21,7 +21,9 @@ jobs:
rebuild=`bash .github/workflows/check_if_rebuild_requires.sh ${tmpfile} rebuild | grep "REBUILD=YES" | wc -l`
echo "Rebuild required: ${rebuild}"
echo "rebuild=${rebuild}" >> "$GITHUB_ENV"
- uses: actions/setup-python@v1
- uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: homebrew
if: env.rebuild == '1'
run: |
Expand Down

0 comments on commit 29deacb

Please sign in to comment.