Revision 92b2431402790fa3ac24e071f35f4e93d244c98a authored by LuisGC on 18 February 2018, 18:39:09 UTC, committed by LuisGC on 18 February 2018, 18:39:09 UTC
1 parent 55ff411
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