From e166d705c33519d2cc0961e361efe9b5ba080518 Mon Sep 17 00:00:00 2001 From: c-bordon Date: Thu, 5 Jun 2025 16:40:02 -0300 Subject: [PATCH] Fixed tag validation --- tools/repository_bumper.sh | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/tools/repository_bumper.sh b/tools/repository_bumper.sh index 653c1012..be0b2c17 100644 --- a/tools/repository_bumper.sh +++ b/tools/repository_bumper.sh @@ -160,6 +160,13 @@ main() { update_stage_in_files "${STAGE}" fi + # Update Docker images tag if tag is true + if [[ "${TAG}" == "true" ]]; then + echo "Updating Docker images tag to ${VERSION}-${STAGE}" | tee -a "${LOG_FILE}" + update_docker_images_tag "${VERSION}-${STAGE}" + fi + + echo "The following files were edited:" | tee -a "${LOG_FILE}" for file in $(printf "%s\n" "${FILES_EDITED[@]}" | sort -u); do echo "${file}" | tee -a "${LOG_FILE}"