diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 8abe23ebda52bdf6cb8eaa130024a762d5956185..27792f7d854dd564f2d4540118563b57d0111109 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -352,5 +352,41 @@ labriqueterie:
   only:
     - master
   when: manual
+  tags:
+    - deploy
+
+facttic:
+  stage: deployment
+  environment:
+    name: facttic
+    url: https://facttic.hubl.world
+  before_script:
+    - npm ci --cache .npm --prefer-offline --only=production
+  script:
+    - echo "$APP_CONFIG_FACTTIC" > 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/* facttic@astral.startinblox.com:~/front/
+  only:
+    - master
+  when: manual
+  tags:
+    - deploy
+
+cotech:
+  stage: deployment
+  environment:
+    name: cotech
+    url: https://hubl.coops.tech
+  before_script:
+    - npm ci --cache .npm --prefer-offline --only=production
+  script:
+    - echo "$APP_CONFIG_COTECH" > 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/* cotech@astral.startinblox.com:~/front/
+  only:
+    - master
+  when: manual
   tags:
     - deploy
\ No newline at end of file