From e34077c1732114071840de3d208e2881739fb346 Mon Sep 17 00:00:00 2001 From: Chris Coley <chris@codingallnight.com> Date: Sun, 23 Apr 2023 01:33:24 -0700 Subject: [PATCH] Make sure the branch subdirectory exists --- .gitlab-ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 5c50814..bba6a9b 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -9,7 +9,8 @@ pages: tags: - docker script: + - mkdir -p public/$CI_COMMIT_BRANCH - cp -r src public/$CI_COMMIT_BRANCH artifacts: paths: - - public/CI_COMMIT_BRANCH + - public/$CI_COMMIT_BRANCH -- GitLab