From 415573828f0e8ac534cf57037f972a3b2960a13a Mon Sep 17 00:00:00 2001 From: tengel Date: Wed, 20 Mar 2024 11:13:10 -0500 Subject: [PATCH] rename gitlab-ci --- gitlab-ci.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 gitlab-ci.yml diff --git a/gitlab-ci.yml b/gitlab-ci.yml new file mode 100644 index 0000000..5ded07e --- /dev/null +++ b/gitlab-ci.yml @@ -0,0 +1,22 @@ +image: debian:latest + +before_script: + - bash ./bin/debian_pandoc.sh >/dev/null + +test: + stage: test + script: + - bash ./bin/generate_html.sh + only: + - branches + - tags + +pages: + stage: deploy + script: + - bash ./bin/generate_html.sh + artifacts: + paths: + - public + only: + - master