diff options
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index caf30093229..49c4b059dbc 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -285,7 +285,8 @@ review-docs-deploy-manual: - ./$SCRIPT_NAME deploy when: manual only: - - branches + - branches@gitlab-org/gitlab-ce + - branches@gitlab-org/gitlab-ee <<: *except-docs-and-qa # Always trigger a docs build in gitlab-docs only on docs-only branches. @@ -297,7 +298,8 @@ review-docs-deploy: - gem install gitlab --no-ri --no-rdoc - ./$SCRIPT_NAME deploy only: - - /(^docs[\/-].*|.*-docs$)/ + - /(^docs[\/-].*|.*-docs$)/@gitlab-org/gitlab-ce + - /(^docs[\/-].*|.*-docs$)/@gitlab-org/gitlab-ee <<: *except-qa # Cleanup remote environment of gitlab-docs @@ -323,11 +325,9 @@ cloud-native-image: variables: GIT_DEPTH: "1" cache: {} - before_script: - - gem install gitlab --no-rdoc --no-ri - - chmod 755 ./scripts/trigger-build-cloud-native script: - - ./scripts/trigger-build-cloud-native + - gem install gitlab --no-ri --no-rdoc + - ./trigger-build cng only: - tags@gitlab-org/gitlab-ce - tags@gitlab-org/gitlab-ee |