(ci) do not fetch artifacts in deploy job (they get fetched inside of deployer)

This commit is contained in:
Valentyne Stigloher 2025-02-15 17:27:43 +01:00
parent d3a76a3c7e
commit 396773a81d

View File

@ -1,6 +1,9 @@
.deploy: &deploy .deploy: &deploy
tags: ['deploy'] tags: ['deploy']
needs: ['build'] needs:
-
job: 'build'
artifacts: false
rules: rules:
- -
if: $CI_COMMIT_REF_PROTECTED && $DEPLOY_TARGET =~ $ENVIRONMENT_PATTERN if: $CI_COMMIT_REF_PROTECTED && $DEPLOY_TARGET =~ $ENVIRONMENT_PATTERN