Skip to content

Commit 5909670

Browse files
committed
Fixed "latest" tag
The variable for the latest tag didn't contain all the needed values.
1 parent 231de23 commit 5909670

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,7 @@ for DOCKER_TARGET in "${DOCKER_TARGETS[@]}"; do
229229
MINOR=${BASH_REMATCH[2]}
230230

231231
TARGET_DOCKER_SHORT_TAG="${DOCKER_SHORT_TAG-${DOCKER_REGISTRY}/${DOCKER_ORG}/${DOCKER_REPO}:v${MAJOR}.${MINOR}}"
232-
TARGET_DOCKER_LATEST_TAG="latest"
232+
TARGET_DOCKER_LATEST_TAG="${DOCKER_REGISTRY}/${DOCKER_ORG}/${DOCKER_REPO}:latest"
233233

234234
if [ "${DOCKER_TARGET}" != "main" ]; then
235235
TARGET_DOCKER_SHORT_TAG="${TARGET_DOCKER_SHORT_TAG}-${DOCKER_TARGET}"

0 commit comments

Comments
 (0)