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 80
80
./builders/build-python.ps1 -Version $env:VERSION `
81
81
-Platform ${{ matrix.platform }} -Architecture ${{ matrix.arch }}
82
82
83
+ - name : Publish artifact
84
+ uses : actions/upload-artifact@v3
85
+ with :
86
+ name : ${{ env.ARTIFACT_NAME }}
87
+ path : ${{ runner.temp }}/artifact
88
+
83
89
- name : Prepare matrix
90
+ id : build-python
84
91
shell : pwsh
85
92
run : |
86
93
Write-Host "${{ needs.generate_matrix.outputs.matrix }}"
89
96
$matrixReduced = $matrix | Where-Object {$_.arch -ne "arm64" -or $_.os -ne "windows-2019"}
90
97
Write-Host matrix after changes is $matrixReduced
91
98
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
97
99
98
100
test_python :
99
101
needs : [generate_matrix, build_python]
You can’t perform that action at this time.
0 commit comments