From 86c71e1015e32ec9730fc82fba6fe2abe212d607 Mon Sep 17 00:00:00 2001
From: winniehell <git@winniehell.de>
Date: Tue, 12 Jul 2016 18:47:54 +0200
Subject: [PATCH] Move index.html to simplify .gitlab-ci.yml

---
 .gitlab-ci.yml                  | 6 ++----
 README.md                       | 4 +---
 index.html => public/index.html | 0
 3 files changed, 3 insertions(+), 7 deletions(-)
 rename index.html => public/index.html (100%)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 7b35fd8..7679a25 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -1,11 +1,9 @@
 pages:
   stage: deploy
   script:
-  - mkdir .public
-  - cp -r * .public
-  - mv .public public
+  - echo 'Nothing to do...'
   artifacts:
     paths:
     - public
   only:
-  - master
\ No newline at end of file
+  - master
diff --git a/README.md b/README.md
index 7700f25..dc8e711 100644
--- a/README.md
+++ b/README.md
@@ -29,9 +29,7 @@ defined in [`.gitlab-ci.yml`](.gitlab-ci.yml):
 pages:
   stage: deploy
   script:
-  - mkdir .public
-  - cp -r * .public
-  - mv .public public
+  - echo 'Nothing to do...'
   artifacts:
     paths:
     - public
diff --git a/index.html b/public/index.html
similarity index 100%
rename from index.html
rename to public/index.html
-- 
GitLab