From cbee86f26d79249fa2d56cdc2fe21321e5c7568a Mon Sep 17 00:00:00 2001 From: Tom Willemse Date: Sun, 6 Oct 2019 19:29:11 -0700 Subject: [PATCH] Move public_html to public MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit If I remember correctly the gitlab pages deployment needs everything to be in ‘public’. --- .gitlab-ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 342112c..e8c0574 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -29,9 +29,9 @@ pages: - build-html - build-css script: - - echo "Deploying to pages" + - mv public_html public artifacts: paths: - - public_html/ + - public only: - master