diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index df97d99133e9da36dbe3eed932bd189b7df6ed34..ec73d9b82cbd53f6a1216c15a894fc8b82b494ea 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -3,11 +3,9 @@ image: alpine:latest 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 7700f25a2f66ebe6bd7325f6432e9f4174b5d6cb..dc8e71147488479fec94c2dabaf90cf7b7ed388d 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