synced-timer/.gitlab-ci.yml

14 lines
403 B
YAML
Raw Normal View History

2021-07-11 09:17:35 +02:00
deploy_production:
type: deploy
image: ubuntu:latest
environment:
name: production
url: timer.itsblue.de
script:
- apt update
2021-07-11 09:33:28 +02:00
- apt install -y openssh-client rsync
2021-07-11 09:17:35 +02:00
- chmod 700 $DEPLOYMENT_SSH_KEY
2021-07-11 09:32:40 +02:00
- rsync -avz -e "ssh -i $DEPLOYMENT_SSH_KEY -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null" ./ root@10.10.0.1:/opt/lamp/www/timer.itsblue.de
2021-07-11 09:17:35 +02:00
only:
- master