ci: try using ssh-agent
Some checks failed
ci/woodpecker/push/build Pipeline failed

This commit is contained in:
Radical 2025-05-05 02:47:34 +02:00
parent 257decff6e
commit 93bbaa2b91

View file

@ -10,13 +10,10 @@ steps:
image: debian:12 image: debian:12
commands: commands:
- apt update -y && apt install -y rsync openssh-client - apt update -y && apt install -y rsync openssh-client
- mkdir -p ~/.ssh - ssh-agent bash -c "ssh-add <(echo '$MY_SSH_KEY') && rsync --archive --verbose --compress --hard-links --delete-during --partial --progress ./.output/ root@gorb.app:/var/www/gorb.app && ssh root@gorb.app systemctl restart gorb.app.service"
- echo "$KEY" > ~/.ssh/id_ed25519
- rsync --archive --verbose --compress --hard-links --delete-during --partial --progress ./.output/ root@gorb.app:/var/www/gorb.app
- ssh root@gorb.app systemctl restart gorb.app.service
environment: environment:
KEY: KEY:
from_secret: ssh_key from_secret: ssh_key
when: when:
- event: push - branch: main
branch: main event: push