From 735f1f0d77f9d9a575b767da72a9f5692338f2de Mon Sep 17 00:00:00 2001 From: Moritz Maxeiner <mm@ucw.sh> Date: Thu, 4 Jun 2020 22:05:57 +0200 Subject: [PATCH] [ci] fix deploy jobs not being in deploy stage --- .gitlab-ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 6614ffe..f6691d6 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -14,7 +14,7 @@ build centos: - docker build $OPTS --pull -t "${CI_REGISTRY}/${CI_PROJECT_PATH,,}:${CI_COMMIT_REF_NAME}-centos" -f centos/Dockerfile centos deploy centos: - stage: build + stage: deploy tags: [ linux, shell ] only: - master @@ -37,7 +37,7 @@ build ubuntu: - docker build $OPTS --pull -t "${CI_REGISTRY}/${CI_PROJECT_PATH,,}:${CI_COMMIT_REF_NAME}-ubuntu" -f ubuntu/Dockerfile ubuntu deploy ubuntu: - stage: build + stage: deploy tags: [ linux, shell ] only: - master @@ -67,7 +67,7 @@ build windows: - docker build --memory 15G -t "${image_name}:${CI_COMMIT_REF_NAME}-cuda-devel-windows" -f windows/cuda-devel/Dockerfile windows/cuda-devel deploy windows: - stage: build + stage: deploy tags: [ windows, shell ] only: - master -- GitLab