From 5f950e769a04a91773ab2f487dce3350d415990b Mon Sep 17 00:00:00 2001 From: John Livingston Date: Tue, 14 Feb 2023 10:39:04 +0100 Subject: [PATCH] Gitlab CI/CD to publish documentation on framagit. Related to #117. --- .gitlab-ci.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 .gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 00000000..4bceda65 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,10 @@ +image: monachus/hugo + +pages: + script: + - hugo -s support/documentation/ -d public/ + artifacts: + paths: + - public + only: + - develop