Skip to content
Snippets Groups Projects
Commit f0f5dac8 authored by Dominik Hebeler's avatar Dominik Hebeler
Browse files

fixed deployment stage missing on development/master

parent 15079f61
No related branches found
No related tags found
1 merge request!1973Development
...@@ -25,8 +25,7 @@ deploy_development: ...@@ -25,8 +25,7 @@ deploy_development:
DEPLOYMENT_HELM_VALUES: .gitlab/development.yaml DEPLOYMENT_HELM_VALUES: .gitlab/development.yaml
DEPLOYMENT_CHART_NAME: $CI_COMMIT_BRANCH DEPLOYMENT_CHART_NAME: $CI_COMMIT_BRANCH
rules: rules:
- if: '$CI_COMMIT_BRANCH != "development"' - if: '$CI_COMMIT_BRANCH == "development"'
when: never
deploy_production: deploy_production:
extends: extends:
...@@ -40,9 +39,7 @@ deploy_production: ...@@ -40,9 +39,7 @@ deploy_production:
DEPLOYMENT_HELM_VALUES: .gitlab/production.yaml DEPLOYMENT_HELM_VALUES: .gitlab/production.yaml
DEPLOYMENT_CHART_NAME: $CI_COMMIT_BRANCH DEPLOYMENT_CHART_NAME: $CI_COMMIT_BRANCH
rules: rules:
- if: '$CI_COMMIT_BRANCH != "development"' - if: '$CI_COMMIT_BRANCH != "master"'
when: never
deploy_review: deploy_review:
extends: extends:
......
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