Files
lti-api/.gitlab-ci.yml
T
2026-01-21 15:56:58 +07:00

21 lines
508 B
YAML

workflow:
rules:
- if: '$CI_PIPELINE_SOURCE == "merge_request_event"'
- if: '$CI_COMMIT_BRANCH == "development"'
- if: '$CI_COMMIT_BRANCH == "staging"'
- if: '$CI_COMMIT_BRANCH == "production"'
- when: never
include:
- local: "ci/development.yml"
rules:
- if: '$CI_COMMIT_BRANCH == "development"'
- local: "ci/staging.yml"
rules:
- if: '$CI_COMMIT_BRANCH == "staging"'
- local: "ci/production.yml"
rules:
- if: '$CI_COMMIT_BRANCH == "production"'