https://github.com/LuisGC/blog
Revision 9b8297f368d79bb14af551123acf2f51d0231133 authored by LuisGC on 18 February 2018, 16:33:01 UTC, committed by LuisGC on 18 February 2018, 16:33:01 UTC
1 parent fc236eb
Raw File
Tip revision: 9b8297f368d79bb14af551123acf2f51d0231133 authored by LuisGC on 18 February 2018, 16:33:01 UTC
changes in README and circle.yml
Tip revision: 9b8297f
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
      - git add docs
      - git commit --message "Generated site on $(date) [ci skip]"
      - git push origin master
back to top