diff options
author | Malena Ebert <63863184+malena-ebert-sonarsource@users.noreply.github.com> | 2022-04-27 13:54:04 +0200 |
---|---|---|
committer | sonartech <sonartech@sonarsource.com> | 2022-04-28 20:02:52 +0000 |
commit | 875c8215fcb6ac8ad18fc549d43e7c15f3fff134 (patch) | |
tree | b64e954dcb5164cb5dee77f7f290a0bc67901f91 /.cirrus.yml | |
parent | 32c5e375b8d88af444c8e52cc0ff933e9290e8ef (diff) | |
download | sonarqube-875c8215fcb6ac8ad18fc549d43e7c15f3fff134.tar.gz sonarqube-875c8215fcb6ac8ad18fc549d43e7c15f3fff134.zip |
BUILD-1529 Fix only_if of promotion
Diffstat (limited to '.cirrus.yml')
-rw-r--r-- | .cirrus.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.cirrus.yml b/.cirrus.yml index 45f3cc81f5a..d11ae4484d3 100644 --- a/.cirrus.yml +++ b/.cirrus.yml @@ -473,7 +473,7 @@ qa_ldap_task: <<: *REPORTS_JUNIT_SCREENSHOTS_ON_FAILURE_TEMPLATE promote_task: - only_if: $CIRRUS_BRANCH != "public_master" || $CIRRUS_BRANCH != "branch-nightly-build" + only_if: $CIRRUS_BRANCH != "public_master" && $CIRRUS_BRANCH != "branch-nightly-build" depends_on: - build - validate |