websites/ewintr.nl/themes/no-style-please/.gitlab-ci.yml

16 lines
416 B
YAML
Raw Normal View History

2025-01-08 20:36:08 +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
# This config will only publish changes that are pushed on the main branch
only:
- main