We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c100575 commit df0ea94Copy full SHA for df0ea94
.github/workflows/release.yml
@@ -62,10 +62,15 @@ jobs:
62
run: git apply -v "${{ env.IMGTOOL_PACKING_PATH }}/patches/"*
63
64
- name: Set up Python ${{ env.PYTHON_VERSION }}
65
+ if: matrix.os != 'macos-10.15'
66
uses: actions/setup-python@v3
67
with:
68
python-version: ${{ env.PYTHON_VERSION }}
69
architecture: ${{ matrix.python_arch }}
70
+
71
+ - name: Set up Python ${{ env.PYTHON_VERSION }} on macOS
72
+ if: matrix.os == 'macos-10.15'
73
+ run: brew install python@${{ env.PYTHON_VERSION }}
74
75
- name: Upgrade PIP
76
run: python -m pip install --upgrade pip setuptools wheel
0 commit comments