From 7c50f0a59a5213052594bab89cb8887395d61ab2 Mon Sep 17 00:00:00 2001 From: Armando Diaz Date: Thu, 16 Oct 2025 20:49:49 -0500 Subject: [PATCH] fix ci var --- .gitlab-ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 6313514..5ba1d29 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -19,7 +19,7 @@ build_container: stage: build image: deps.global.bsf.tools/quay.io/buildah/stable:latest variables: - IMAGE_NAME: "$CI_REGISTRY_IMAGE:$CI_COMMIT_REF" + IMAGE_NAME: "$CI_REGISTRY_IMAGE:$CI_COMMIT_REF_NAME" before_script: - mkdir -p /tmp/buildah-storage - export BUILDAH_ROOT="/tmp/buildah-storage" @@ -51,7 +51,7 @@ deploy_helm_charts: ./helm/warehouse13 --namespace $NAMESPACE \ -f $VALUES_FILE \ --set api.image=$CI_REGISTRY_IMAGE \ - --set api.image.tag=$CI_COMMIT_REF \ + --set api.image.tag=$CI_COMMIT_REF_NAME \ --set postgres.image.repository=containers.global.bsf.tools/postgres \ --set postgres.image.tag=15-alpine \ --set minio.image.repository=containers.global.bsf.tools/minio \