Files
argoyle 6ded07f0c2 ci: remove unused Docker variables and services
Removes unnecessary Docker variables and services from the CI 
configuration. This streamlines the build process and reduces 
complexity, as these settings are no longer required for the 
pipeline to function correctly.
2024-12-05 13:38:38 +01:00

23 lines
305 B
YAML

stages:
- build
- deploy-prod
image: buildtool/build-tools:${BUILDTOOLS_VERSION}
build:
stage: build
script:
- build
- push
deploy-to-prod:
stage: deploy-prod
when: on_success
script:
- echo Deploy to PROD.
- deploy prod
environment:
name: prod
only:
- master