Files
unbound-site/.gitlab-ci.yml
T
argoyle e7b3552ad1 ci: clean up GitLab CI configuration
Removes unused Docker variables from the CI configuration to simplify 
the setup. This change streamlines the build process by eliminating 
redundant settings that are not required for the current build 
pipeline.
2024-12-05 10:59:03 +01:00

26 lines
362 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
deploy-to-prod:
stage: deploy-prod
when: on_success
script:
- echo Deploy to PROD.
- deploy prod
environment:
name: prod
only:
- master