1 parent 16dad65 commit 168e93dCopy full SHA for 168e93d
1 file changed
.github/workflows/release.yml
@@ -42,8 +42,10 @@ jobs:
42
id: meta
43
run: |
44
TAG_NAME=${GITHUB_REF#refs/tags/}
45
+ TAG_RAW=${TAG_NAME#v}
46
echo "tag=${TAG_NAME}" >> $GITHUB_OUTPUT
- echo "Building release for tag: ${TAG_NAME}"
47
+ echo "tag_raw=${TAG_RAW}" >> $GITHUB_OUTPUT
48
+ echo "Building release for tag: ${TAG_NAME} (raw: ${TAG_RAW})"
49
50
- name: Build and Push Multi-Arch Docker Image
51
uses: docker/build-push-action@v6
@@ -53,6 +55,7 @@ jobs:
53
55
push: true
54
56
tags: |
57
ghcr.io/${{ github.repository }}:${{ steps.meta.outputs.tag }}
58
+ ghcr.io/${{ github.repository }}:${{ steps.meta.outputs.tag_raw }}
59
ghcr.io/${{ github.repository }}:latest
60
cache-from: type=gha
61
cache-to: type=gha,mode=max
0 commit comments