Welcome to mirror list, hosted at ThFree Co, Russian Federation.

wercker.yml - github.com/matcornic/hugo-theme-learn.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e9d59b432ffc63ba0ea89df552e60b742f500d7f (plain)
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