15 lines
260 B
YAML
15 lines
260 B
YAML
|
image: alpine:latest
|
||
|
|
||
|
pages:
|
||
|
script:
|
||
|
# this uses alpine, for whatever reason
|
||
|
- apk add --update-cache --repository http://dl-cdn.alpinelinux.org/alpine/edge/community/ zola
|
||
|
- zola build
|
||
|
|
||
|
artifacts:
|
||
|
paths:
|
||
|
- public
|
||
|
|
||
|
only:
|
||
|
- main
|