From 095e9727ed29ce3d283de7bec375f38f454b06fd Mon Sep 17 00:00:00 2001 From: Micah Anderson Date: Tue, 19 Mar 2024 12:00:37 -0400 Subject: [PATCH] CI: Remove echo in container stage. This was here for debugging and is no longer necessary. It also resulted in the following command being run: $ echo "Building Docker image with tag: $TAG" /kaniko/executor --context "${CI_PROJECT_DIR}" --dockerfile "${CI_PROJECT_DIR}/Dockerfile" --destination "${CI_REGISTRY_IMAGE}:${TAG}_${ARCH}" which does not produce the image properly. --- .gitlab-ci.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index d2bc664..46e02c2 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -301,7 +301,6 @@ build-container: script: - if [ $CI_COMMIT_REF_NAME == "main" ]; then export TAG='latest'; fi - >- - echo "Building Docker image with tag: $TAG" /kaniko/executor --context "${CI_PROJECT_DIR}" --dockerfile "${CI_PROJECT_DIR}/Dockerfile"