From 071931281f737f785350e38c6a356ee812a93864 Mon Sep 17 00:00:00 2001 From: Anthony Wang Date: Thu, 20 Jan 2022 18:13:05 -0600 Subject: [PATCH] Use native Rsync protocol for deploy --- .woodpecker.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.woodpecker.yml b/.woodpecker.yml index 09f449dd..f6dee1d6 100644 --- a/.woodpecker.yml +++ b/.woodpecker.yml @@ -14,6 +14,5 @@ pipeline: deploy: image: none commands: - - eval $(ssh-agent -s) - - ssh-add <(echo "$SSH_KEY") - - rsync -e ssh -r website/public/* ta180m@localhost:/srv/http/pages/ta180m + - rsync -r website/public/* ta180m@localhost:/srv/http/pages/ta180m + secrets: [ rsync_password ]