File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 88
88
Write-Host "matrix is $matrix"
89
89
$matrixReduced = $matrix | Where-Object {$_.arch -ne "arm64" -or $_.os -ne "windows-2019"}
90
90
Write-Host matrix after changes is $matrixReduced
91
- echo "matrix =$($matrix | ConvertTo-Json -Compress -AsArray)" >> $env:GITHUB_OUTPUT
91
+ echo "matrixReduced =$($matrixReduced | ConvertTo-Json -Compress -AsArray)" >> $env:GITHUB_OUTPUT
92
92
- name : Publish artifact
93
93
uses : actions/upload-artifact@v3
94
94
with :
@@ -100,7 +100,7 @@ jobs:
100
100
strategy :
101
101
fail-fast : false
102
102
matrix :
103
- include : ${{ fromJson(needs.build_python.outputs.matrix ) }}
103
+ include : ${{ fromJson(needs.build_python.outputs.matrixReduced ) }}
104
104
runs-on : ${{ matrix.os }}
105
105
env :
106
106
ARTIFACT_NAME : python-${{ inputs.VERSION || '3.11.0' }}-${{ matrix.platform }}-${{ matrix.arch }}
You can’t perform that action at this time.
0 commit comments