e7b3552ad1
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.
26 lines
362 B
YAML
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
|