2017-09-10 11:14:02 -04:00
|
|
|
defaults: &defaults
|
|
|
|
working_directory: /go/src/github.com/gohugoio
|
|
|
|
docker:
|
2017-10-15 04:59:16 -04:00
|
|
|
- image: bepsays/ci-goreleaser:0.34.2-1
|
2017-09-10 11:14:02 -04:00
|
|
|
|
|
|
|
version: 2
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
<<: *defaults
|
|
|
|
steps:
|
|
|
|
- checkout:
|
|
|
|
path: hugo
|
|
|
|
- run:
|
|
|
|
command: |
|
|
|
|
git clone git@github.com:gohugoio/hugoDocs.git
|
|
|
|
cd hugo
|
|
|
|
make vendor
|
|
|
|
make check
|
|
|
|
- persist_to_workspace:
|
|
|
|
root: .
|
|
|
|
paths: .
|
|
|
|
release:
|
|
|
|
<<: *defaults
|
|
|
|
steps:
|
|
|
|
- attach_workspace:
|
|
|
|
at: /go/src/github.com/gohugoio
|
|
|
|
- run:
|
|
|
|
command: |
|
|
|
|
cd hugo
|
|
|
|
git config --global user.email "bjorn.erik.pedersen+hugoreleaser@gmail.com"
|
|
|
|
git config --global user.name "hugoreleaser"
|
|
|
|
go run -tags release main.go release -r ${CIRCLE_BRANCH}
|
|
|
|
|
|
|
|
workflows:
|
|
|
|
version: 2
|
|
|
|
release:
|
|
|
|
jobs:
|
|
|
|
- build:
|
|
|
|
filters:
|
|
|
|
branches:
|
|
|
|
only: /release-.*/
|
|
|
|
- hold:
|
|
|
|
type: approval
|
|
|
|
requires:
|
|
|
|
- build
|
|
|
|
- release:
|
|
|
|
context: org-global
|
|
|
|
requires:
|
|
|
|
- hold
|