diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index a660e450d3daab6d0586f7738463ab486edda7f0..d3ed9c65040dd80d3ee06000eace972c3c973224 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -300,3 +300,21 @@ playground:
   when: manual
   tags:
     - deploy
+
+casaco:
+  stage: deployment
+  environment:
+    name: casaco
+    url: https://casaco.hubl.world
+  before_script:
+    - npm ci --cache .npm --prefer-offline --only=production
+  script:
+    - echo "$APP_CONFIG_CASACO" > config.json
+    - echo "$SSH_DEPLOY_KEY" | tr -d '\r' > gitlab.key && chmod 600 gitlab.key
+    - npm run build
+    - scp -i gitlab.key -o StrictHostKeyChecking=no -r dist/* casaco@astral.startinblox.com:~/front/
+  only:
+    - master
+  when: manual
+  tags:
+    - deploy