add gitlab build script for plmlab

This commit is contained in:
lapinot 2024-01-10 15:23:56 +01:00
parent bf34e8e676
commit a9992f2a5f
2 changed files with 12 additions and 1 deletions

11
.gitlab-ci.yml Normal file
View File

@ -0,0 +1,11 @@
image: "alpine:latest"
before_script:
- "apk add --no-cache make python3 py3-markdown py3-jinja2"
pages:
script:
- "make site.tgz"
artifacts:
paths:
- "public"
rules:
- if: "$CI_COMMIT_REF_NAME == $CI_DEFAULT_BRANCH"

View File

@ -1,4 +1,4 @@
BUILD_DIR := ./build BUILD_DIR := ./public
SRCS := src/build.py src/index.html src/index.md src/assets/theme.css SRCS := src/build.py src/index.html src/index.md src/assets/theme.css
.PHONY: all clean publish serve .PHONY: all clean publish serve