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: dbb213ee32fba1ce8c3feda1213be8cc2281b341 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
box: golang
build:
  steps:
    # Sets the go workspace and places you package
    # at the right place in the workspace tree
    - setup-go-workspace

    # Gets the dependencies
    - script:
        name: get hugo
        code: |
          go get github.com/gohugoio/hugo

    # Build the project
    - script:
        name: build site
        code: |
          cd exampleSite && hugo