This repository has been archived on 2026-03-07. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
2021-04-17 23:04:02 +02:00

28 lines
377 B
YAML

stages:
- build
- deploy-prod
variables:
DOCKER_HOST: tcp://docker:2375/
image: buildtool/build-tools:${BUILDTOOLS_VERSION}
build:
stage: build
services:
- docker:dind
script:
- build
- push
deploy-to-prod:
stage: deploy-prod
when: on_success
script:
- echo Deploy to prod.
- deploy prod
environment:
name: prod
only:
- master