Skip to content

Commit df0ea94

Browse files
committed
try to use brew version of python
1 parent c100575 commit df0ea94

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

.github/workflows/release.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,10 +62,15 @@ jobs:
6262
run: git apply -v "${{ env.IMGTOOL_PACKING_PATH }}/patches/"*
6363

6464
- name: Set up Python ${{ env.PYTHON_VERSION }}
65+
if: matrix.os != 'macos-10.15'
6566
uses: actions/setup-python@v3
6667
with:
6768
python-version: ${{ env.PYTHON_VERSION }}
6869
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 }}
6974

7075
- name: Upgrade PIP
7176
run: python -m pip install --upgrade pip setuptools wheel

0 commit comments

Comments
 (0)