Files
dancefetcher/.gitlab-ci.yml
T
argoyle e459365ea3 fix(ci): remove unnecessary docker service from CI config
Removes the unused docker service definition from the CI 
configuration file to simplify the pipeline setup and 
reduce resource consumption during the build stage.
2024-12-12 09:54:45 +01:00

31 lines
445 B
YAML

include:
- template: 'Workflows/MergeRequest-Pipelines.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