Files
dancefinder-app/.gitlab-ci.yml
T
argoyle e42cafe972 feat(ci): include unboundsoftware CI templates in pipeline
Add unboundsoftware CI templates to the pipeline configuration. This 
enhances the existing CI workflow by incorporating standard defaults, 
ensuring consistency and reducing redundancy in configuration.
2025-10-23 16:32:09 +02:00

28 lines
431 B
YAML

include:
- template: 'Workflows/MergeRequest-Pipelines.gitlab-ci.yml'
- project: unboundsoftware/ci-templates
file: Defaults.gitlab-ci.yml
stages:
- build
- deploy
image: buildtool/build-tools:${BUILDTOOLS_VERSION}
build:
stage: build
script:
- build
- push
deploy-to-prod:
stage: deploy
when: on_success
script:
- echo Deploy to PROD.
- deploy prod
environment:
name: prod
only:
- main