Skip to content

Commit

Permalink
Fix actions syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
joshwlewis committed Aug 5, 2024
1 parent d1f054d commit 75b0819
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ jobs:
needs:
- publish-image
env:
TAG_SUFFIX: ".${{ github.ref_type == 'tag' && github.ref_name || 'nightly' }"
TAG_SUFFIX: ".${{ github.ref_type == 'tag' && github.ref_name || 'nightly' }}"
strategy:
fail-fast: false
matrix:
Expand Down Expand Up @@ -137,13 +137,13 @@ jobs:
if (( ${{ matrix.stack-version }} >= 24 )); then
for variant in ("" "-build"); do
for arch in ("amd64" "arm64"); do
destTags+=("heroku/heroku:${{ matrix-stack-version }}${variant}_linux-${arch}")
destTags+=("heroku/heroku:${{ matrix.stack-version }}${variant}_linux-${arch}")
done
destTags+=("heroku/heroku:${{ matrix-stack-version }}${variant}")
destTags+=("heroku/heroku:${{ matrix.stack-version }}${variant}")
done
else
for variant in ("" "-build" "-cnb" "-cnb-build"); do
destTags+=("heroku/heroku:${{ matrix-stack-version }}${variant}")
destTags+=("heroku/heroku:${{ matrix.stack-version }}${variant}")
done
end
for destTag in "$destTags[@]"; do
Expand Down

0 comments on commit 75b0819

Please sign in to comment.