Skip to content
Snippets Groups Projects
Commit 8338d4b6 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 c5ae7316
No related branches found
No related tags found
No related merge requests found
......@@ -82,8 +82,9 @@ deploy:staging:infra:
environment:
name: staging
url: https://staging.moderation.holi.social
only:
- main
rules:
- if: $CI_COMMIT_BRANCH == "main"
when: on_success
###
# PRODUCTION
......@@ -94,5 +95,6 @@ deploy:production:infra:
environment:
name: production
url: https://moderation.holi.social
only:
- production
\ No newline at end of file
rules:
- if: $CI_COMMIT_BRANCH == "production"
when: on_success
......@@ -6,8 +6,10 @@ apps:prepare:
- corepack enable
- corepack yarn install --immutable
rules:
# Execute step if yarn.lock was changed or cache is missing
# Inspired by https://gitlab.com/gitlab-org/gitlab/-/issues/244932#note_1727726890
# always run when triggered manually
- if: $CI_COMMIT_BRANCH && $CI_PIPELINE_SOURCE == "web"
when: on_success
# only run on specific file changes when triggered by git push
- if: $CI_COMMIT_BRANCH
changes:
- yarn.lock
......
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