https://github.com/LuisGC/blog
Raw File
Tip revision: 8a2765390860bd2ddca49d52c522a820b30dbded authored by CircleCI on 18 February 2018, 18:56:31 UTC
Generated site on Sun Feb 18 18:56:31 UTC 2018 [ci skip]
Tip revision: 8a27653
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 -b "/blog" -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