3d09a1ff03
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.
28 lines
408 B
YAML
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
|