Skip to content

Commit 1206749

Browse files
committed
try with quoted values
1 parent e358618 commit 1206749

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
@@ -194,12 +194,12 @@ jobs:
194194
.github/config/macos-pkg-choices-freethreaded.xml
195195
persist-credentials: false
196196
- name: Install Python
197-
if: endsWith(matrix.PYTHON.VERSION, 't') == 'false'
197+
if: ${{ !endsWith(matrix.PYTHON.VERSION, 't') }}
198198
run: |
199199
curl "${{ matrix.PYTHON.DOWNLOAD_URL }}" -o python.pkg
200200
sudo installer -pkg python.pkg -target /
201-
- name: Install Python
202-
if: endsWith(matrix.PYTHON.VERSION, 't') == 'true'
201+
- name: Install Python (free-threaded)
202+
if: ${{ endsWith(matrix.PYTHON.VERSION, 't') }}
203203
run: |
204204
curl "${{ matrix.PYTHON.DOWNLOAD_URL }}" -o python.pkg
205205
sudo installer -pkg python.pkg -applyChoiceChangesXML .github/config/macos-pkg-choices-freethreaded.xml -target /

0 commit comments

Comments
 (0)