5f5c64f853
Eliminate the docker service from the GitLab CI build stage. This change simplifies the configuration and reduces dependency overhead, as it is not needed for the current build process.
26 lines
360 B
YAML
26 lines
360 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-to-prod:
|
|
stage: deploy
|
|
when: on_success
|
|
script:
|
|
- echo Deploy to PROD.
|
|
- deploy prod
|
|
environment:
|
|
name: prod
|
|
only:
|
|
- main
|