Adding build script.

This commit is contained in:
g* 2025-06-17 14:54:55 +02:00
commit 48dd2ba5b2

15
.gitlab-ci.yml Normal file
View file

@ -0,0 +1,15 @@
pages:
stage: deploy
image: python:latest
script:
- pip install -r requirements.txt
- mkdocs build --site-dir site
cache:
key: ${CI_COMMIT_REF_SLUG}
paths:
- .cache/
artifacts:
paths:
- site
rules:
- if: '$CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH'