From 60dad4404f032c6877f9c1c1e727eaf485184374 Mon Sep 17 00:00:00 2001 From: Ral <ral@c3sign.de> Date: Tue, 7 Sep 2021 21:27:15 +0200 Subject: [PATCH] Gitlab CI Configuration --- .gitlab-ci.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..a892038 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,13 @@ +--- +image: registry.git.cccv.de/infra/static-pages/docker-images/bullseye-hugo + +pages: + stage: deploy + script: + - 'hugo version' + - 'hugo --minify -b "https://signs.pages.git.cccv.de/"' + artifacts: + paths: + - public + only: + - master -- GitLab