File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff 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 /
You can’t perform that action at this time.
0 commit comments