From d5aa880336c5900106ea9e73022adec5c00f9dac Mon Sep 17 00:00:00 2001 From: Julien Neuhart Date: Fri, 7 Feb 2025 08:41:04 +0100 Subject: [PATCH] ci(build-push): fix typo in tag name --- .github/actions/build-push/build-push.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/build-push/build-push.sh b/.github/actions/build-push/build-push.sh index fd3e341f..de239a3f 100755 --- a/.github/actions/build-push/build-push.sh +++ b/.github/actions/build-push/build-push.sh @@ -68,7 +68,7 @@ if [ "${#semver[@]}" -eq 3 ]; then minor="${semver[1]}" patch="${semver[2]}" - tags+=("$DOCKER_REGISTRY/$DOCKER_REPOSITORY:latest-${arch[1]})") + tags+=("$DOCKER_REGISTRY/$DOCKER_REPOSITORY:latest-${arch[1]}") tags+=("$DOCKER_REGISTRY/$DOCKER_REPOSITORY:$major-${arch[1]}") tags+=("$DOCKER_REGISTRY/$DOCKER_REPOSITORY:$major.$minor-${arch[1]}r") tags+=("$DOCKER_REGISTRY/$DOCKER_REPOSITORY:$major.$minor.$patch-${arch[1]}")