2022-12-03 20:01:01 +01:00
|
|
|
image: alpine:latest
|
|
|
|
pages:
|
|
|
|
script:
|
|
|
|
# Install the zola package from the alpine community repositories
|
|
|
|
- apk add --update-cache --repository http://dl-cdn.alpinelinux.org/alpine/edge/community/ zola
|
|
|
|
# Execute zola build
|
|
|
|
- zola build
|
|
|
|
|
|
|
|
artifacts:
|
|
|
|
paths:
|
|
|
|
# Path of our artifacts
|
|
|
|
- public
|
|
|
|
|
2022-12-03 20:10:35 +01:00
|
|
|
# This config will only publish changes that are pushed on the main branch
|
2022-12-03 20:01:01 +01:00
|
|
|
only:
|
2022-12-03 20:10:35 +01:00
|
|
|
- main
|