From ec9a2ad2ce47ab6f23bfa1750a144d3eb1692853 Mon Sep 17 00:00:00 2001 From: jtagcat Date: Fri, 4 Sep 2020 22:35:02 +0300 Subject: [PATCH] Add .gitlab-ci.yml for signs.k-space.ee --- .gitlab-ci.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .gitlab-ci.yml 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 +