From b7ba2f2431d0b0ffef8ffbf23a9c3f9631482895 Mon Sep 17 00:00:00 2001 From: Pierre-Olivier Mercier Date: Tue, 23 Jan 2024 13:24:47 +0100 Subject: [PATCH] Add gitlab-ci.yml for Pages --- .gitlab-ci.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..7c18e23 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,19 @@ +# +# All available Hugo versions are listed under https://gitlab.com/pages/hugo/container_registry. +# +image: registry.gitlab.com/pages/hugo/hugo:latest + +stages: + - build + +before_script: + - git submodule init + - git submodule update + +pages: + stage: build + script: + - hugo + artifacts: + paths: + - public