From 723b90ebcb9bed482e1336ee49910509da32f782 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Timu=C3=A7in=20Boldt?= <timucin.boldt@udo.edu>
Date: Mon, 1 Nov 2021 14:43:18 +0000
Subject: [PATCH] create new public directory when deploying to pages

---
 .gitlab-ci.yml | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index e9cda86..c8d7237 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -4,8 +4,10 @@ pages:
   stage: deploy
   script:
     - echo "Deploying to pages..."
+    - mkdir public
+    - cp -r web public
   artifacts:
     paths:
-      - web
+      - public
   only:
     - master
-- 
GitLab