diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000000000000000000000000000000000000..c6e9d647b1e74d75bff2a301575b59451c0d800a --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,17 @@ +image: node + +stages: + - deploy + +deploy_staging: + stage: deploy + environment: staging + script: + - npm install + - echo $APP_CONFIG + - echo $APP_CONFIG > config.json + - npm run build + - echo $SSH_PRIAVTE_KEY > gitlab.key + - scp -i gitlab.key -r build/* test-paris@ssh-test-paris.happy-dev.fr:~/staging/www/ + only: + - feat/manager_deploy