From d93e54422609844056920763ee01b1174bc7837b Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Konrad=20V=C3=B6lkel?= <konrad.voelkel@hhu.de>
Date: Fri, 21 Feb 2025 11:10:43 +0000
Subject: [PATCH] Update .gitlab-ci.yml file

---
 .gitlab-ci.yml | 16 ++++++++++++++--
 1 file changed, 14 insertions(+), 2 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 32eff38..9a86469 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -1,2 +1,14 @@
-# The Docker image that will be used to build your app
-image: debian:bookworm
+stages:
+    - deploy
+
+pages:
+    stage: deploy
+    image: busybox:latest
+    script:
+        - mv ./* public/
+    artifacts:
+        paths:
+            - public
+        rules:
+            - if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
+            
\ No newline at end of file
-- 
GitLab