UNCLASSIFIED - NO CUI

Skip to content
Snippets Groups Projects
Commit 37ff4b4e authored by Zachariah Dzielinski's avatar Zachariah Dzielinski
Browse files

ci: making sure release jobs don't run yet

parent 32a80889
No related branches found
No related tags found
1 merge request!129BB-1081 - Modify Umbrella workflow rules to restrict pipelines for merge requests / general clean up of workflow rules
Pipeline #126394 failed
......@@ -268,11 +268,12 @@ package:
stage: package
image: registry.dsop.io/platform-one/big-bang/umbrella/synker:0.0.1
rules:
# skip job for manual tag events
- if: $CI_COMMIT_TAG
when: never
# run job on commits to default branch
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
# # skip job for manual tag events
# - if: $CI_COMMIT_TAG
# when: never
# # run job on commits to default branch
# - if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
when: never # TODO - Job should not run yet
dependencies:
- clean install
before_script:
......@@ -309,11 +310,12 @@ release:
stage: release
image: registry.gitlab.com/gitlab-org/release-cli:latest
rules:
# skip job for manual tag events
- if: $CI_COMMIT_TAG
when: never
# run job on commits to default branch
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
# # skip job for manual tag events
# - if: $CI_COMMIT_TAG
# when: never
# # run job on commits to default branch
# - if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
when: never # TODO - Job should not run yet
variables:
RELEASE_ENDPOINT: https://${RELEASE_BUCKET}.s3-${AWS_DEFAULT_REGION}.amazonaws.com/umbrella/${CI_COMMIT_TAG}
script:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment