From f7df9036e34568c136cbd63086d27c2c2c3eb900 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miloslav=20=C4=8C=C3=AD=C5=BE?= Date: Sun, 19 Jul 2020 00:03:29 +0200 Subject: [PATCH] Work on website --- .gitlab-ci.yml | 9 +++++++++ public/index.html => index.html | 0 2 files changed, 9 insertions(+) create mode 100644 .gitlab-ci.yml rename public/index.html => index.html (100%) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..fb9afc2 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,9 @@ +pages: + stage: deploy + script: + - cp index.html public + artifacts: + paths: + - public + only: + - master diff --git a/public/index.html b/index.html similarity index 100% rename from public/index.html rename to index.html