Files
dancefetcher/.gitlab-ci.yml
T

37 lines
560 B
YAML

include:
- template: 'Workflows/MergeRequest-Pipelines.gitlab-ci.yml'
variables:
DOCKER_HOST: tcp://docker:2375
DOCKER_DRIVER: overlay2
stages:
- build
- deploy-prod
image: buildtool/build-tools:${BUILDTOOLS_VERSION}
services:
- docker:${DOCKER_DIND_VERSION}
build:
stage: build
script:
- build
- push
artifacts:
paths:
- release/
- coverage.html
- k8s
deploy-prod:
stage: deploy-prod
before_script:
- echo Deploy to prod
script:
- deploy prod
only:
- master
environment:
name: prod