Skip to content

Commit

Permalink
Fix the matrix for the combine Job.
Browse files Browse the repository at this point in the history
  • Loading branch information
dj-maisy committed Mar 14, 2024
1 parent 99076a7 commit 8eb93a5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-multiarch.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
- id: set-matrix
run: |
echo "matrix=$(jq -c . < build-matrix.json)" >> $GITHUB_OUTPUT
echo "matrix_versions=$(jq -c .version < build-matrix.json)" >> $GITHUB_OUTPUT
echo "matrix_versions=$(jq -c .version[] < build-matrix.json)" >> $GITHUB_OUTPUT
build_and_push_image:
name: Build ruby_${{ join(matrix.version.rubyver, '.') }} for ${{ matrix.arch }} and push to GHCR
Expand Down Expand Up @@ -169,7 +169,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
version: ${{ fromJson(needs.configure_builds.outputs.matrix.version) }}
version: ${{ fromJson(needs.configure_builds.outputs.matrix_versions) }}
permissions:
packages: write
steps:
Expand Down

0 comments on commit 8eb93a5

Please sign in to comment.