Files
geo-service/.gitlab-ci.yml
T

31 lines
446 B
YAML

include:
- template: 'Workflows/MergeRequest-Pipelines.gitlab-ci.yml'
stages:
- build
- deploy
variables:
DOCKER_HOST: tcp://docker:2375/
image: buildtool/build-tools:${BUILDTOOLS_VERSION}
build:
stage: build
services:
- docker:${DOCKER_DIND_VERSION}
script:
- build
- push
deploy:
stage: deploy
when: on_success
script:
- echo Deploying
- deploy prod
environment:
name: prod
only:
- master