Revision 009b80189ea55cf6b22751e2b069d6b9fff3891b authored by CircleCI on 18 February 2018, 18:41:19 UTC, committed by CircleCI on 18 February 2018, 18:41:19 UTC
1 parent 92b2431
Raw File
circle.yml
machine:
  pre:
    - git config --global user.name "CircleCI"
    - git config --global user.email "circleci@circleci.com"

dependencies:
  pre:
    - go get -v github.com/gohugoio/hugo

deployment:
  master:
    branch:
      - master
      - hugo
    commands:
      - rm -rf docs
      - hugo -d docs -t hugo-future-imperfect
      - git add docs
      - git commit --message "Generated site on $(date) [ci skip]"
      - git push origin hugo

test:
  override:
      - hugo check
back to top