Skip to content

Commit

Permalink
hopefully final fix
Browse files Browse the repository at this point in the history
  • Loading branch information
rmrt1n committed Dec 16, 2024
1 parent 23f0b87 commit 047d4e4
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/release-nakama.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,10 @@ jobs:
id: arm64_tags
run: |
TAGS="${{ steps.meta.outputs.tags }}"
TAGS_ARM64="$(echo "$TAGS" | sed 's/$/-arm64/g')"
echo "tags=$TAGS_ARM64" >> $GITHUB_OUTPUT
TAGS_ARM64="$(echo "$TAGS" | grep -v 'sha-' | sed 's/$/-arm64/g')"
echo "tags<<EOF" >> $GITHUB_OUTPUT
echo "$TAGS_ARM64" >> $GITHUB_OUTPUT
echo "EOF" >> $GITHUB_OUTPUT
- name: Build and push
uses: docker/build-push-action@v5
with:
Expand Down

0 comments on commit 047d4e4

Please sign in to comment.