hubl/.gitlab-ci.yml

19 lines
354 B
YAML
Raw Normal View History

2019-11-20 20:05:23 +00:00
image: node
stages:
- deploy
deploy_staging:
stage: deploy
environment: staging
script:
- npm install
2019-11-20 20:10:50 +00:00
- echo $APP_CONFIG > config.json
2019-11-20 20:05:23 +00:00
- npm run build
2019-11-20 20:09:14 +00:00
- echo $SSH_PRIVATE_KEY > gitlab.key
2019-11-20 20:05:23 +00:00
- scp -i gitlab.key -r build/* test-paris@ssh-test-paris.happy-dev.fr:~/staging/www/
only:
- feat/manager_deploy
2019-11-20 20:06:30 +00:00
tags:
- sib