From 975423811a580e81fc07e4592fd47c51106b7adf Mon Sep 17 00:00:00 2001 From: Josh Morgenstern <josh@morgenstern.dev> Date: Tue, 18 May 2021 00:06:41 +0200 Subject: [PATCH] [#25] fix permissions --- .gitlab-ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 0d3a468e..0a246fc1 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 + - sudo 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 + - sudo mv doc/html /html/branch/$CI_COMMIT_BRANCH - chown 33:33 /html/branch/$CI_COMMIT_BRANCH -R -- GitLab