From 962237945f9c62fa1df290fadd5dd5b14c765b1d Mon Sep 17 00:00:00 2001 From: Konrad Bucheli Date: Thu, 10 Feb 2022 10:30:05 +0100 Subject: [PATCH] save another 30M by moving and not copying the output --- .gitlab-ci.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 310a6859..50c8649b 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -14,10 +14,8 @@ pages: script: - python3 --version - jupyter-book build . - - echo "copy content to public folder" - - mkdir .public - - cp -r ./_build/html/* .public - - mv .public public + - echo "move content to public folder" + - mv ./_build/html public tags: - shared - gitlab-pages