wercker.yml 425 B

12345678910111213141516
  1. box: golang
  2. build:
  3. steps:
  4. # Gets the dependencies
  5. - script:
  6. name: get hugo
  7. code: |
  8. git clone https://github.com/gohugoio/hugo.git && cd hugo && go install
  9. # Sets the go workspace and places you package
  10. # at the right place in the workspace tree
  11. - setup-go-workspace
  12. # Build the project
  13. - script:
  14. name: build site
  15. code: |
  16. cd exampleSite && hugo