diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000000000000000000000000000000000000..34c7169bf29eb633c2e3b8c24020ad59da426d8d --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,20 @@ +image: registry.git.cccv.de/infra/static-pages/docker-images/bullseye-directory-listing + +variables: + GIT_SUBMODULE_STRATEGY: recursive + +pages: + stage: deploy + script: + - mkdir .public + - cp -r * .public + - mv .public public + - find public/ -name '.*' -exec rm -r {} \; + - apt-get update -qq; apt-get install --reinstall -y libexpat1 #this is a workaround for some strange bug where libexpat is missing + - create-directory-html-index --template rc3 ./public ./public + - du -hs ./public + artifacts: + paths: + - public + only: + - master