Files
dancefinder-app/.gitlab-ci.yml
T
argoyle 5f5c64f853 fix(ci): remove docker service from build configuration
Eliminate the docker service from the GitLab CI build stage. This change 
simplifies the configuration and reduces dependency overhead, as it is 
not needed for the current build process.
2024-12-06 12:05:02 +01:00

26 lines
360 B
YAML

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