Skip to content

Commit

Permalink
Fix another shellcheck lint.
Browse files Browse the repository at this point in the history
  • Loading branch information
sengi committed Jul 8, 2024
1 parent e51b193 commit 679a0d0
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/build-multiarch.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,11 @@ jobs:
show-progress: false
- 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 "runs_on=$(jq -c .runs_on < build-matrix.json)" >> "$GITHUB_OUTPUT"
{
echo "matrix=$(jq -c . < build-matrix.json)"
echo "matrix_versions=$(jq -c .version < build-matrix.json)"
echo "runs_on=$(jq -c .runs_on < build-matrix.json)"
} >> "$GITHUB_OUTPUT"
build_and_push_image:
name: Build ruby_${{ join(matrix.version.rubyver, '.') }} for ${{ matrix.runs_on.arch }} and push to GHCR
Expand Down

0 comments on commit 679a0d0

Please sign in to comment.