devroom.io/.gitlab-ci.yml
Ariejan de Vroom 2f17ec7b2c Update script
2015-12-04 15:14:42 +01:00

26 lines
306 B
YAML

image: golang:1.5
before_script:
- go get -v github.com/spf13/hugo
stages:
- build
- deploy
build_job:
stage: build
tags:
- golang
script:
- hugo
deploy_job:
stage: deploy
only:
- master
tags:
- golang
script:
- echo "I would be deploying right about now..."