Skip to content

Commit 399cdf8

Browse files
minor changes
1 parent fb8d44f commit 399cdf8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ jobs:
8888
Write-Host "matrix is $matrix"
8989
$matrixReduced = $matrix | Where-Object {$_.arch -ne "arm64" -or $_.os -ne "windows-2019"}
9090
Write-Host matrix after changes is $matrixReduced
91-
echo "matrix=$($matrix | ConvertTo-Json -Compress -AsArray)" >> $env:GITHUB_OUTPUT
91+
echo "matrixReduced=$($matrixReduced | ConvertTo-Json -Compress -AsArray)" >> $env:GITHUB_OUTPUT
9292
- name: Publish artifact
9393
uses: actions/upload-artifact@v3
9494
with:
@@ -100,7 +100,7 @@ jobs:
100100
strategy:
101101
fail-fast: false
102102
matrix:
103-
include: ${{ fromJson(needs.build_python.outputs.matrix) }}
103+
include: ${{ fromJson(needs.build_python.outputs.matrixReduced) }}
104104
runs-on: ${{ matrix.os }}
105105
env:
106106
ARTIFACT_NAME: python-${{ inputs.VERSION || '3.11.0' }}-${{ matrix.platform }}-${{ matrix.arch }}

0 commit comments

Comments
 (0)