Skip to content

Commit

Permalink
minor changes
Browse files Browse the repository at this point in the history
  • Loading branch information
dmitry-shibanov committed Dec 20, 2023
1 parent fb8d44f commit 399cdf8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-python-packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ jobs:
Write-Host "matrix is $matrix"
$matrixReduced = $matrix | Where-Object {$_.arch -ne "arm64" -or $_.os -ne "windows-2019"}
Write-Host matrix after changes is $matrixReduced
echo "matrix=$($matrix | ConvertTo-Json -Compress -AsArray)" >> $env:GITHUB_OUTPUT
echo "matrixReduced=$($matrixReduced | ConvertTo-Json -Compress -AsArray)" >> $env:GITHUB_OUTPUT
- name: Publish artifact
uses: actions/upload-artifact@v3
with:
Expand All @@ -100,7 +100,7 @@ jobs:
strategy:
fail-fast: false
matrix:
include: ${{ fromJson(needs.build_python.outputs.matrix) }}
include: ${{ fromJson(needs.build_python.outputs.matrixReduced) }}
runs-on: ${{ matrix.os }}
env:
ARTIFACT_NAME: python-${{ inputs.VERSION || '3.11.0' }}-${{ matrix.platform }}-${{ matrix.arch }}
Expand Down

0 comments on commit 399cdf8

Please sign in to comment.