From ea45807ccbb20987cd4e20b335ce45952ee793d5 Mon Sep 17 00:00:00 2001
From: Jean-Baptiste Pasquier <contact@jbpasquier.eu>
Date: Mon, 27 Jul 2020 12:08:29 +0000
Subject: [PATCH] cicd: fnk, opteos, labriqueterie

---
 .gitlab-ci.yml | 54 ++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 54 insertions(+)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index d3ed9c65..d298b55f 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -318,3 +318,57 @@ casaco:
   when: manual
   tags:
     - deploy
+
+opteos:
+  stage: deployment
+  environment:
+    name: opteos
+    url: https://opteos.hubl.world
+  before_script:
+    - npm ci --cache .npm --prefer-offline --only=production
+  script:
+    - echo "$APP_CONFIG_OPTEOS" > 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/* opteos@astral.startinblox.com:~/front/
+  only:
+    - master
+  when: manual
+  tags:
+    - deploy
+
+fnk:
+  stage: deployment
+  environment:
+    name: fnk
+    url: https://fnk.hubl.world
+  before_script:
+    - npm ci --cache .npm --prefer-offline --only=production
+  script:
+    - echo "$APP_CONFIG_FNK" > 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/* fnk@astral.startinblox.com:~/front/
+  only:
+    - master
+  when: manual
+  tags:
+    - deploy
+
+labriqueterie:
+  stage: deployment
+  environment:
+    name: labriqueterie
+    url: https://labriqueterie.hubl.world
+  before_script:
+    - npm ci --cache .npm --prefer-offline --only=production
+  script:
+    - echo "$APP_CONFIG_LABRIQUETERIE" > 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/* labriqueterie@astral.startinblox.com:~/front/
+  only:
+    - master
+  when: manual
+  tags:
+    - deploy
\ No newline at end of file
-- 
GitLab