Updated gitlab-ci

Signed-off-by: Marcin Woźniak <y0rune@aol.com>
This commit is contained in:
Marcin Woźniak 2020-11-30 21:54:23 +01:00
parent 19653178c4
commit 3ae44b5bcf
Signed by: y0rune
GPG Key ID: F204C385F57EB348
1 changed files with 9 additions and 10 deletions

View File

@ -1,6 +1,5 @@
stages:
- build
- test
- deploy
build:
@ -17,19 +16,19 @@ build:
- build
- node_modules/
test:
stage: test
image: node
script:
- echo "Testing App"
- CI= yarn test --passWithNoTests
- echo "Test successfully!"
deploy_production:
stage: deploy
before_script:
- apt-get update
- apt-get --yes --force-yes install rsync
script:
- 'which ssh-agent || ( apt-get update -y && apt-get install openssh-client -y )'
- eval $(ssh-agent -s)
- ssh-add <(echo "$SSH_PRIVATE_KEY")
- mkdir -p ~/.ssh
- '[[ -f /.dockerenv ]] && echo -e "Host *\n\tStrictHostKeyChecking no\n\n" > ~/.ssh/config'
- echo "Deploying to server"
- rsync --progress -r build/* --delete root@35.207.132.68:/var/www/plannaplan.pl
- rsync --progress -r build/* --delete website@wmi-frontend.plannaplan.pl:/var/www/plannaplan.pl
- echo "Deployed"
only:
- master