Update .gitlab-ci.yml

environments/production/deployments/1
Theenoro 2018-09-05 13:40:28 +02:00
parent fb4f5bb4e0
commit ef8b2193c7
1 changed files with 8 additions and 4 deletions

View File

@ -8,7 +8,8 @@ image: node:8.11.4
setup: setup:
only: master only: master
tags: prod tags:
- prod
script: script:
- eval $(ssh-agent -s) - eval $(ssh-agent -s)
- echo "$SSH_PRIVATE_KEY" | tr -d '\r' | ssh-add - > /dev/null - echo "$SSH_PRIVATE_KEY" | tr -d '\r' | ssh-add - > /dev/null
@ -23,14 +24,16 @@ setup:
build: build:
stage: build stage: build
only: master only: master
tags: prod tags:
- prod
script: script:
- npm run build - npm run build
deploy: deploy:
stage: deploy stage: deploy
only: master only: master
tags: prod tags:
- prod
script: script:
- export c=$PWD - export c=$PWD
- ssh -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null $SSH_U@$SSH_S 'rm -rf $HOME/wbm/*' - ssh -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null $SSH_U@$SSH_S 'rm -rf $HOME/wbm/*'
@ -40,7 +43,8 @@ deploy:
url: https://wbm.lucajaents.ch url: https://wbm.lucajaents.ch
cleanup: cleanup:
tags: prod tags:
- prod
stage: cleanup stage: cleanup
script: script:
- rm -rf ./* - rm -rf ./*