From f12db3b816ed11d0d4d8640e7d923b2614617a7c Mon Sep 17 00:00:00 2001 From: yoshi Date: Tue, 23 Nov 2021 22:26:57 +0100 Subject: [PATCH] Chore: fix invalid ci/cd config --- .gitlab-ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 394612f..f1d9fb7 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,5 +1,5 @@ prepare_job: - stage: prepare # This stage must run before the release stage + stage: build # This stage must run before the release stage rules: - if: $CI_COMMIT_TAG when: never # Do not run this job when a tag is created manually @@ -12,7 +12,7 @@ prepare_job: dotenv: variables.env # Use artifacts:reports:dotenv to expose the variables to other jobs release_job: - stage: release + stage: deploy image: registry.gitlab.com/gitlab-org/release-cli:latest needs: - job: prepare_job