Skip to content

Commit 2e77e16

Browse files
committed
try with quoted values
1 parent c460928 commit 2e77e16

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/wheel-builder.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -176,12 +176,12 @@ jobs:
176176
.github/config/macos-pkg-choices-freethreaded.xml
177177
persist-credentials: false
178178
- name: Install Python
179-
if: endsWith(matrix.PYTHON.VERSION, 't') == 'false'
179+
if: ${{ !endsWith(matrix.PYTHON.VERSION, 't') }}
180180
run: |
181181
curl "${{ matrix.PYTHON.DOWNLOAD_URL }}" -o python.pkg
182182
sudo installer -pkg python.pkg -target /
183-
- name: Install Python
184-
if: endsWith(matrix.PYTHON.VERSION, 't') == 'true'
183+
- name: Install Python (free-threaded)
184+
if: ${{ endsWith(matrix.PYTHON.VERSION, 't') }}
185185
run: |
186186
curl "${{ matrix.PYTHON.DOWNLOAD_URL }}" -o python.pkg
187187
sudo installer -pkg python.pkg -applyChoiceChangesXML .github/config/macos-pkg-choices-freethreaded.xml -target /

0 commit comments

Comments
 (0)