From 1261a6e87cc97b4e199bbf6f4136c5a53290456d Mon Sep 17 00:00:00 2001 From: lafleur Date: Fri, 9 Oct 2020 01:30:12 +0200 Subject: [PATCH] added Hugo 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..35460c3 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,22 @@ +# All available Hugo versions are listed here: +# https://gitlab.com/pages/hugo/container_registry +image: registry.gitlab.com/pages/hugo:latest + +variables: + GIT_SUBMODULE_STRATEGY: recursive + +#test: +# script: +# - hugo +# except: +# - master + +pages: + script: + - hugo + artifacts: + paths: + - public + only: + - master +