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 @@ -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 /
You can’t perform that action at this time.
0 commit comments