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
nginx-s3-upload/.gitlab-ci.yml
T
2020-10-02 09:37:38 +02:00

28 lines
368 B
YAML

stages:
- build
- deploy-prod
variables:
DOCKER_HOST: tcp://docker:2375/
image: buildtool/build-tools:0.0.23
build:
stage: build
services:
- docker:19.03-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