Skip to content

Commit 625f260

Browse files
minor changes
1 parent 399cdf8 commit 625f260

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

.github/workflows/build-python-packages.yml

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,14 @@ jobs:
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 }}"
@@ -89,11 +96,6 @@ jobs:
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]

0 commit comments

Comments
 (0)