Files
dancefetcher/.gitlab-ci.yml
T
argoyle b18b2de6af feat(ci): add external CI template for better configuration
Includes the external CI template from unboundsoftware to enhance 
the CI configuration. This change streamlines the setup process 
and maintains consistency across projects.
2025-10-23 16:30:42 +02:00

33 lines
516 B
YAML

include:
- template: 'Workflows/MergeRequest-Pipelines.gitlab-ci.yml'
- project: unboundsoftware/ci-templates
file: Defaults.gitlab-ci.yml
stages:
- build
- deploy-prod
image: buildtool/build-tools:${BUILDTOOLS_VERSION}
build:
stage: build
script:
- build
- push
artifacts:
paths:
- release/
- coverage.html
- k8s
deploy-prod:
stage: deploy-prod
before_script:
- echo Deploy to prod
script:
- deploy prod
only:
- master
environment:
name: prod