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 0b1ace9 commit 67cc433Copy full SHA for 67cc433
.github/workflows/build-python-packages.yml
@@ -83,8 +83,8 @@ jobs:
83
- name: Prepare matrix
84
shell: pwsh
85
run: |
86
- Write-Host ${{ needs.generate_matrix.outputs.matrix }}
87
- $matrix = ${{ needs.generate_matrix.outputs.matrix }}
+ Write-Host "${{ needs.generate_matrix.outputs.matrix }}""
+ $matrix = "${{ needs.generate_matrix.outputs.matrix }}" | ConvertTo-Json -Compress -AsArray
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