Skip to content

Commit 234943a

Browse files
authored
Fix v1.xx.y-n.m tag generation (#441)
In the previous version, instead of v1.19.0-1.0, tagged as v1.19.0-debian. Before: v1.19.0-debian-amd64-1.0 (tag1) => v1.19.0-debian-1.0 (MULTIARCH_AMD64_TAG) => v1.19.0-debian (MULTIARCH_SHORT_ALIAS this is wrong!) After: v1.19.0-debian-amd64-1.0 (tag1) => v1.19.0-debian-1.0 (MULTIARCH_AMD64_TAG) => v1.19.0-1.0 Signed-off-by: Kentaro Hayashi <[email protected]>
1 parent 5cf5efa commit 234943a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/docker-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ jobs:
188188
${{ env.REPOSITORY }}:${ARM64TAG} \
189189
${{ env.REPOSITORY }}:${ARMHFTAG}
190190
# v1.xx.y-n.m
191-
VERSION_WITH_SUFFIX=${MULTIARCH_SHORT_ALIAS/debian-/}
191+
VERSION_WITH_SUFFIX=${MULTIARCH_AMD64_TAG/debian-/}
192192
docker buildx imagetools create -t ${{ env.REPOSITORY }}:${VERSION_WITH_SUFFIX} \
193193
${{ env.REPOSITORY }}:${AMD64TAG} \
194194
${{ env.REPOSITORY }}:${ARM64TAG} \

0 commit comments

Comments
 (0)