synced-timer/.gitlab-ci.yml

27 lines
613 B
YAML
Raw Normal View History

2021-07-11 09:42:07 +02:00
build:
image: ubuntu:latest
stage: build
script:
2022-05-11 23:47:29 +02:00
- apt-get update
- apt-get install -y build-essential
2021-07-11 09:42:07 +02:00
- make all
artifacts:
paths:
- public
expire_in: 1 week
2021-07-11 09:17:35 +02:00
deploy_production:
type: deploy
image: ubuntu:latest
environment:
name: production
url: timer.itsblue.de
script:
2022-05-11 23:47:29 +02:00
- apt-get update
- apt-get install -y openssh-client rsync
2021-07-11 09:17:35 +02:00
- chmod 700 $DEPLOYMENT_SSH_KEY
2021-07-11 09:42:07 +02:00
- rsync -avz -e "ssh -i $DEPLOYMENT_SSH_KEY -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null" ./public/ root@10.10.0.1:/opt/lamp/www/timer.itsblue.de
2021-07-11 09:17:35 +02:00
only:
- master