mirror of
https://github.com/McShelby/hugo-theme-relearn.git
synced 2024-11-23 07:47:54 +00:00
18 lines
387 B
YAML
18 lines
387 B
YAML
|
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
|