https://github.com/LuisGC/blog
Raw File
Tip revision: a8ec7a46c08a0ac37aa30ea291e9a14bb6525d78 authored by LuisGC on 18 February 2018, 17:45:17 UTC
Merge branch 'master' of https://github.com/LuisGC/blog into hugo
Tip revision: a8ec7a4
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: 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