diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..cf2182a --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,13 @@ +# see https://docs.gitlab.com/ce/ci/yaml/README.html for all available options + +image: busybox:latest + +pages: + script: + - echo "There must be something here for it to deploy without messing with stuff too much." + artifacts: + paths: + - public + only: + - master +