From f8e970a129b7cffb34e002c660a2a888675e3079 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gr=C3=A9goire?= <gregoire.kubler@proton.me> Date: Mon, 15 Jul 2024 17:37:21 +0200 Subject: [PATCH] fix : typo --- .gitlab/ci/rules.gitlab-ci.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.gitlab/ci/rules.gitlab-ci.yml b/.gitlab/ci/rules.gitlab-ci.yml index 3ebabb2..ee33dd8 100644 --- a/.gitlab/ci/rules.gitlab-ci.yml +++ b/.gitlab/ci/rules.gitlab-ci.yml @@ -25,9 +25,10 @@ # deploying created releases # when creating a commit tag & previous release job was successful .rules:deploy: - - when: never - - allow_failure: false - - if: $CI_COMMIT_TAG && $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH - when: on_success + rules: + - when: never + - allow_failure: false + - if: $CI_COMMIT_TAG && $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH + when: on_success -- GitLab