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