cmc-sales/.gitlab-ci.yml
2019-04-25 13:13:53 +10:00

20 lines
250 B
YAML

stages:
- build
- deploy
build:
stage: build
script:
- docker build . -t "cmc:latest"
deploy_staging:
stage: deploy
script:
- echo "Deploy to staging server"
- whoami
environment:
name: staging
only:
- master