Skip to content
Snippets Groups Projects
Commit 89e566c8 authored by Ole Langbehn's avatar Ole Langbehn
Browse files

fix: switch from deprecated only to rules, dont use changes rules on manual builds

parent 90be6738
No related branches found
No related tags found
No related merge requests found
......@@ -79,14 +79,16 @@ staging_deploy:
url: https://development-chat.holi.social
variables:
ENVIRONMENT_ID: staging
only:
- main
rules:
- if: $CI_COMMIT_BRANCH == "main"
when: on_success
staging_smoketest:
extends: .smoketest
needs: ['staging_deploy']
only:
- main
rules:
- if: $CI_COMMIT_BRANCH == "main"
when: on_success
production_deploy:
extends: .deploy
......@@ -97,11 +99,13 @@ production_deploy:
url: https://chat.holi.social
variables:
ENVIRONMENT_ID: production
only:
- production
rules:
- if: $CI_COMMIT_BRANCH == "production"
when: on_success
production_smoketest:
extends: .smoketest
needs: ['production_deploy']
only:
- production
rules:
- if: $CI_COMMIT_BRANCH == "production"
when: on_success
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