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 8888 Write-Host "matrix is $matrix"
8989 $matrixReduced = $matrix | Where-Object {$_.arch -ne "arm64" -or $_.os -ne "windows-2019"}
9090 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
9292 - name : Publish artifact
9393 uses : actions/upload-artifact@v3
9494 with :
@@ -100,7 +100,7 @@ jobs:
100100 strategy :
101101 fail-fast : false
102102 matrix :
103- include : ${{ fromJson(needs.build_python.outputs.matrix ) }}
103+ include : ${{ fromJson(needs.build_python.outputs.matrixReduced ) }}
104104 runs-on : ${{ matrix.os }}
105105 env :
106106 ARTIFACT_NAME : python-${{ inputs.VERSION || '3.11.0' }}-${{ matrix.platform }}-${{ matrix.arch }}
You can’t perform that action at this time.
0 commit comments