From 0de3cdfb56ed0c88a8b503ad114f62cdb281bd6f Mon Sep 17 00:00:00 2001 From: James Brechtel Date: Thu, 10 Nov 2022 08:10:41 -0500 Subject: [PATCH] Testing CI --- .woodpecker.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.woodpecker.yml b/.woodpecker.yml index 4f43bab..80ed165 100644 --- a/.woodpecker.yml +++ b/.woodpecker.yml @@ -6,6 +6,7 @@ pipeline: deploy: image: jbrechtel/rsync:latest commands: - - export + - mkdir -p $HOME/.ssh + - ssh-keyscan -t rsa $DEPLOY_HOST >> $HOME/.ssh/known_hosts - sshpass -p $${DEPLOY_PASSWORD} rsync -avzr -e ssh -o "StrictHostKeyChecking no" /src/ $${DEPLOY_USER}@$${DEPLOY_HOST}:$${DEPLOY_PATH} secrets: [ DEPLOY_USER, DEPLOY_PATH, DEPLOY_HOST, DEPLOY_PASSWORD ]