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 575ddd2 commit 0b1ace9Copy full SHA for 0b1ace9
.github/workflows/build-python-packages.yml
@@ -83,7 +83,8 @@ jobs:
83
- name: Prepare matrix
84
shell: pwsh
85
run: |
86
- $matrix = ${{ fromJson(needs.generate_matrix.outputs.matrix) }}
+ Write-Host ${{ needs.generate_matrix.outputs.matrix }}
87
+ $matrix = ${{ needs.generate_matrix.outputs.matrix }}
88
Write-Host matrix is $matrix
89
$matrix.data.entities = $matrix.data.entities | Where-Object {$_.arch -NotMatch "arm64" -and $_.os -NotMatch "windows-2019"}
90
Write-Host matrix after changes is $matrix
0 commit comments