Skip to content
Snippets Groups Projects
Commit efcf3237 authored by Éloïs's avatar Éloïs
Browse files

[build] add gitlab ci

parent 652767ba
No related branches found
No related tags found
No related merge requests found
Pipeline #9886 passed
image: alpine:latest
variables:
# This variable will ensure that the CI runner pulls in your theme from the submodule
GIT_SUBMODULE_STRATEGY: recursive
# Specify the zola version you want to use here
ZOLA_VERSION: "v0.12.0"
pages:
script:
# Install the zola package from the alpine testing repositories
- apk add --update-cache --repository http://dl-3.alpinelinux.org/alpine/edge/testing/ zola
# Execute zola build
- zola build
artifacts:
paths:
# Path of our artifacts
- public
# This config will only publish changes that are pushed on the master branch
only:
- master
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment