File tree Expand file tree Collapse file tree 1 file changed +7
-5
lines changed Expand file tree Collapse file tree 1 file changed +7
-5
lines changed Original file line number Diff line number Diff line change 8080 ./builders/build-python.ps1 -Version $env:VERSION `
8181 -Platform ${{ matrix.platform }} -Architecture ${{ matrix.arch }}
8282
83+ - name : Publish artifact
84+ uses : actions/upload-artifact@v3
85+ with :
86+ name : ${{ env.ARTIFACT_NAME }}
87+ path : ${{ runner.temp }}/artifact
88+
8389 - name : Prepare matrix
90+ id : build-python
8491 shell : pwsh
8592 run : |
8693 Write-Host "${{ needs.generate_matrix.outputs.matrix }}"
8996 $matrixReduced = $matrix | Where-Object {$_.arch -ne "arm64" -or $_.os -ne "windows-2019"}
9097 Write-Host matrix after changes is $matrixReduced
9198 echo "matrixReduced=$($matrixReduced | ConvertTo-Json -Compress -AsArray)" >> $env:GITHUB_OUTPUT
92- - name : Publish artifact
93- uses : actions/upload-artifact@v3
94- with :
95- name : ${{ env.ARTIFACT_NAME }}
96- path : ${{ runner.temp }}/artifact
9799
98100 test_python :
99101 needs : [generate_matrix, build_python]
You can’t perform that action at this time.
0 commit comments