From 9582ca672bb57a48d68a5e45a001c44f038f7397 Mon Sep 17 00:00:00 2001
From: Chris Coley <chris@codingallnight.com>
Date: Sun, 23 Apr 2023 01:34:58 -0700
Subject: [PATCH] Copy contents of src directory, not the directory itself

---
 .gitlab-ci.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index bba6a9b..e8a4e07 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -10,7 +10,7 @@ pages:
     - docker
   script:
     - mkdir -p public/$CI_COMMIT_BRANCH
-    - cp -r src public/$CI_COMMIT_BRANCH
+    - cp -r src/* public/$CI_COMMIT_BRANCH
   artifacts:
     paths:
     - public/$CI_COMMIT_BRANCH
-- 
GitLab