You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
486 B
26 lines
486 B
kind: pipeline
|
|
type: docker
|
|
name: default
|
|
|
|
steps:
|
|
- name: deploy
|
|
image: appleboy/drone-ssh
|
|
settings:
|
|
host:
|
|
from_secret: DEPLOY_HOST
|
|
port:
|
|
from_secret: DEPLOY_SSH_PORT
|
|
username:
|
|
from_secret: DEPLOY_USER
|
|
password:
|
|
from_secret: DEPLOY_PASSWORD
|
|
script: |
|
|
set -e
|
|
cd /home/webapps/motief
|
|
git pull origin main
|
|
uv sync
|
|
systemctl --user restart motief
|
|
|
|
trigger:
|
|
branch:
|
|
- main
|
|
|