From f3606c51dcbaa0b586322736db552a69f6a6790f Mon Sep 17 00:00:00 2001 From: Saul Pablo Labajo Izquierdo Date: Wed, 11 Sep 2024 18:27:29 +0200 Subject: [PATCH] Fix illegal tag name --- ci-scripts/container_build.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ci-scripts/container_build.sh b/ci-scripts/container_build.sh index ca86aa653..b22287a52 100755 --- a/ci-scripts/container_build.sh +++ b/ci-scripts/container_build.sh @@ -64,7 +64,8 @@ log "==================== BEGIN ====================" # Trace all commands set -o xtrace - +# Avoid illegal chars in tag name +TAG=$(echo $TAG | tr '/' '_') [[ -z "${PUSH_IMAGES:-}" ]] && PUSH_IMAGES="no" [[ -z "${TAG_COMMIT:-}" ]] && TAG_COMMIT="yes"