Files
geo-service/.gitlab-ci.yml
T
argoyle 813070bd1a ci: remove unused Docker variables and services
Removes unnecessary Docker variables and services from the  
GitLab CI configuration to simplify the build process. This  
streamlines the pipeline and eliminates potential conflicts  
with Docker settings.
2024-12-12 10:12:44 +01:00

26 lines
352 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:
stage: deploy
when: on_success
script:
- echo Deploying
- deploy prod
environment:
name: prod
only:
- master