Skip to content

Commit

Permalink
fixing
Browse files Browse the repository at this point in the history
  • Loading branch information
rmrt1n committed Dec 16, 2024
1 parent affb6c1 commit 23f0b87
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/release-nakama.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,9 @@ jobs:
- name: Prepare arm64 tags
id: arm64_tags
run: |
echo "tags=$(echo "${{ steps.meta.outputs.tags }}" | sed 's/$/-arm64/g')" >> $GITHUB_OUTPUT
TAGS="${{ steps.meta.outputs.tags }}"
TAGS_ARM64="$(echo "$TAGS" | sed 's/$/-arm64/g')"
echo "tags=$TAGS_ARM64" >> $GITHUB_OUTPUT
- name: Build and push
uses: docker/build-push-action@v5
with:
Expand Down

0 comments on commit 23f0b87

Please sign in to comment.