swh:1:snp:c6c9910483576f4138c39e7f58afb6ff8706b29b
Raw File
Tip revision: 3392088243e1389f0e3f42fac8415ee79d19ed78 authored by LuisGC on 18 February 2018, 17:56:32 UTC
Merge branch 'hugo' of https://github.com/LuisGC/blog into hugo
Tip revision: 3392088
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
    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