diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000000000000000000000000000000000000..6e16863e349b028c0e7d4421ba38bd2dc0f5c164 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,19 @@ +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 ./public ./public + artifacts: + paths: + - public + only: + - master