From 4da287c36c35f13f93ec85b5a7bf2f88b839dac2 Mon Sep 17 00:00:00 2001 From: psy <psy@cccv.de> Date: Mon, 14 Mar 2022 20:07:22 +0100 Subject: [PATCH] make ready to serve with gitlab pages --- .gitlab-ci.yml | 12 ++++++++++++ index.html => public/index.html | 0 2 files changed, 12 insertions(+) create mode 100644 .gitlab-ci.yml rename index.html => public/index.html (100%) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..91e2d5f --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,12 @@ +image: registry.git.cccv.de/infra/static-pages/docker-images/bullseye-hugo + +pages: + stage: deploy + script: + - du -sch public + artifacts: + paths: + - public + only: + - master + diff --git a/index.html b/public/index.html similarity index 100% rename from index.html rename to public/index.html -- GitLab