From 843381636b10fc86f7929a24c4cd76ae7f1af852 Mon Sep 17 00:00:00 2001 From: Alex Kanitz <alexander.kanitz@alumni.ethz.ch> Date: Sun, 10 Jul 2022 15:00:36 +0200 Subject: [PATCH] check --- .gitlab-ci.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index ae58d21..4684315 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -20,9 +20,10 @@ build_conda: build_docker: stage: build before_script: - - export IMAGE= - - echo "IMAGE=${DOCKER_ORG}/${DOCKER_REPO}" >> build.env - - echo "TAG=${DOCKER_ORG}/${DOCKER_REPO}" >> build.env + - export IMAGE="${DOCKER_ORG}/${DOCKER_REPO}" + - echo TAG="${DOCKER_ORG}/${DOCKER_REPO}" + - echo "IMAGE=$IMAGE" >> build.env + - echo "TAG=$TAG" >> build.env script: - docker build -t ${IMAGE}:${TAG} . artifacts: -- GitLab