From 89739fa05649fc5c8e187aadf190869b4a08c4c2 Mon Sep 17 00:00:00 2001 From: Tobias Huste <t.huste@hzdr.de> Date: Wed, 24 Jun 2020 14:49:55 +0200 Subject: [PATCH] Fix wrong paths when deploying to GitLab pages --- .gitlab-ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index cac48f109..9434bccba 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -214,7 +214,8 @@ pages: variables: GIT_STRATEGY: none script: - - echo "Skip script section" + - mv public/$CI_PROJECT_NAME/* public/. + - rmdir public/$CI_PROJECT_NAME dependencies: - build:production:subpath needs: ["build:production:subpath"] -- GitLab