diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..f18099d --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,25 @@ +image: golang:1.5 + +before_script: + - go install 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..." +