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