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.
This commit is contained in:
Micah Anderson 2024-03-19 12:00:37 -04:00 committed by micah
parent 1a620dd21b
commit 095e9727ed

View file

@ -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"