From 863d9fb680c61b09b2bea54d53cb2c55f1c07933 Mon Sep 17 00:00:00 2001 From: blank X Date: Sun, 13 Jan 2019 20:49:19 +0700 Subject: [PATCH] Added .gitlab-ci.yml --- .gitlab-ci.yml | 11 +++++++++++ index.css => public/index.css | 0 index.html => public/index.html | 0 3 files changed, 11 insertions(+) create mode 100644 .gitlab-ci.yml rename index.css => public/index.css (100%) rename index.html => public/index.html (100%) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..ec73d9b --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,11 @@ +image: alpine:latest + +pages: + stage: deploy + script: + - echo 'Nothing to do...' + artifacts: + paths: + - public + only: + - master diff --git a/index.css b/public/index.css similarity index 100% rename from index.css rename to public/index.css diff --git a/index.html b/public/index.html similarity index 100% rename from index.html rename to public/index.html