From dabd0e8b87bf7eacaef67436a68d0c0ebf20e226 Mon Sep 17 00:00:00 2001 From: nd <git@notandy.de> Date: Fri, 18 Sep 2020 12:50:22 +0200 Subject: [PATCH] added gitlab-ci --- .gitlab-ci.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..403df13 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,15 @@ +#image: registry.git.cccv.de/infra/static-pages/docker-images/buster +image: debian:buster + +pages: + stage: deploy + script: + - mkdir public + - mv static public + - mv congress.html public/index.html + artifacts: + paths: + - public + only: + - master + -- GitLab