813070bd1a
Removes unnecessary Docker variables and services from the GitLab CI configuration to simplify the build process. This streamlines the pipeline and eliminates potential conflicts with Docker settings.
26 lines
352 B
YAML
26 lines
352 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:
|
|
stage: deploy
|
|
when: on_success
|
|
script:
|
|
- echo Deploying
|
|
- deploy prod
|
|
environment:
|
|
name: prod
|
|
only:
|
|
- master
|