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]}")