We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 877de42 commit c1adcb4Copy full SHA for c1adcb4
.github/workflows/build-python-packages.yml
@@ -66,6 +66,8 @@ jobs:
66
matrix:
67
include: ${{ fromJson(needs.generate_matrix.outputs.matrix) }}
68
runs-on: ${{ matrix.os }}
69
+ outputs:
70
+ matrix: ${{ steps.build-python.outputs.matrixReduced }}
71
env:
72
ARTIFACT_NAME: python-${{ inputs.VERSION || '3.11.0' }}-${{ matrix.platform }}-${{ matrix.arch }}
73
steps:
@@ -88,7 +90,6 @@ jobs:
88
90
89
91
- name: Prepare matrix
92
id: build-python
- shell: pwsh
93
run: |
94
$matrix = '${{ needs.generate_matrix.outputs.matrix }}' | ConvertFrom-Json -AsHashtable
95
$matrixReduced = $matrix | Where-Object {$_.arch -ne "arm64" -or $_.os -ne "windows-2019"}
0 commit comments