cmc-sales/.gitlab-ci.yml

18 lines
222 B
YAML

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