https://github.com/LuisGC/blog
Revision d0260cfcf66acea8a3fa28c1b9faa6bcaa9cabfd authored by LuisGC on 26 August 2018, 11:33:19 UTC, committed by LuisGC on 26 August 2018, 11:33:19 UTC
1 parent 1dd1d6e
Raw File
Tip revision: d0260cfcf66acea8a3fa28c1b9faa6bcaa9cabfd authored by LuisGC on 26 August 2018, 11:33:19 UTC
circle commands updated
Tip revision: d0260cf
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

test:
  override:
      - hugo check

deployment:
  master:
    branch:
      - master
    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 master
back to top