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