diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index ec73d9b82cbd53f6a1216c15a894fc8b82b494ea..1b00714b96ed1e3b6ebc5a2ee0f67b89556eaa91 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -1,11 +1,15 @@
 image: alpine:latest
 
+stages:
+    - deploy
+  
 pages:
   stage: deploy
   script:
-  - echo 'Nothing to do...'
+    - echo "deploy to https://transfer.hft-stuttgart.de/pages/$CI_PROJECT_PATH/"
   artifacts:
     paths:
-    - public
-  only:
-  - master
+      - public
+  only: 
+    - master
+