From 6624df2092b9f30968cc826e2d286e998063bf24 Mon Sep 17 00:00:00 2001 From: Josh Morgenstern <josh@morgenstern.dev> Date: Mon, 17 May 2021 23:45:15 +0200 Subject: [PATCH] [#25] fix path of artifact --- .gitlab-ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 37c5b12e..0d3a468e 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -48,7 +48,7 @@ deploy_doc_develop: variables: GIT_STRATEGY: none script: - - mv /doc/html /html + - mv doc/html /html - chown 33:33 /html -R deploy_doc_branch: @@ -64,6 +64,6 @@ deploy_doc_branch: variables: GIT_STRATEGY: none script: - - mv /doc/html /html/branch/$CI_COMMIT_BRANCH + - mv doc/html /html/branch/$CI_COMMIT_BRANCH - chown 33:33 /html/branch/$CI_COMMIT_BRANCH -R -- GitLab