Files
dancefinder-app/.gitlab-ci.yml
T
argoyle 3d09a1ff03 chore(ci): remove unused docker variables from configuration
This commit removes the redundant Docker-related variables from the
`.gitlab-ci.yml` file to simplify the CI configuration. The removed
variables are not utilized in the current build process and their
absence improves clarity and maintainability of the CI setup.
2024-12-05 07:28:33 +01:00

28 lines
408 B
YAML

include:
- template: 'Workflows/MergeRequest-Pipelines.gitlab-ci.yml'
stages:
- build
- deploy
image: buildtool/build-tools:${BUILDTOOLS_VERSION}
build:
stage: build
services:
- docker:${DOCKER_DIND_VERSION}
script:
- build
- push
deploy-to-prod:
stage: deploy
when: on_success
script:
- echo Deploy to PROD.
- deploy prod
environment:
name: prod
only:
- main