From a9992f2a5f89aad45e20a6b5fad3db823bc8fdd5 Mon Sep 17 00:00:00 2001 From: lapinot Date: Wed, 10 Jan 2024 15:23:56 +0100 Subject: [PATCH] add gitlab build script for plmlab --- .gitlab-ci.yml | 11 +++++++++++ Makefile | 2 +- 2 files changed, 12 insertions(+), 1 deletion(-) create mode 100644 .gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..6e699f0 --- /dev/null +++ b/.gitlab-ci.yml @@ -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" diff --git a/Makefile b/Makefile index 8de56d8..000156c 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -BUILD_DIR := ./build +BUILD_DIR := ./public SRCS := src/build.py src/index.html src/index.md src/assets/theme.css .PHONY: all clean publish serve