diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 47c644948716a8e9f31b328bee9dc549f170546a..6df10c7e88a47ab6dc378cf67dc301100ff9b1c2 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -1,14 +1,16 @@
 image: alpine:latest
 
 stages:
-    - deploy
-  
+  - deploy
+
 pages:
   stage: deploy
   script:
     - echo "deploy to https://transfer.hft-stuttgart.de/pages/$CI_PROJECT_PATH/"
+    - mkdir -p public          # Erstelle das public-Verzeichnis
+    - echo "Hello World" > public/index.html  # Lege eine Testdatei hinein
   artifacts:
     paths:
       - public
-  only: 
+  only:
     - master