From 396773a81d285caff1d110cc5ac68d1a882fa653 Mon Sep 17 00:00:00 2001 From: Valentyne Stigloher Date: Sat, 15 Feb 2025 17:27:43 +0100 Subject: [PATCH] (ci) do not fetch artifacts in deploy job (they get fetched inside of deployer) --- .deploy.gitlab-ci.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.deploy.gitlab-ci.yml b/.deploy.gitlab-ci.yml index 7c042c687..53ca1708f 100644 --- a/.deploy.gitlab-ci.yml +++ b/.deploy.gitlab-ci.yml @@ -1,6 +1,9 @@ .deploy: &deploy tags: ['deploy'] - needs: ['build'] + needs: + - + job: 'build' + artifacts: false rules: - if: $CI_COMMIT_REF_PROTECTED && $DEPLOY_TARGET =~ $ENVIRONMENT_PATTERN