From 72fc0af91332cfe192b850df527fd0de793e1e3c Mon Sep 17 00:00:00 2001 From: Andreas Hnida Date: Wed, 17 Apr 2024 23:48:07 +0200 Subject: [PATCH] Update SSH port for rsync deployment to use port 2121. --- .gitea/workflows/pipeline-test.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/pipeline-test.yaml b/.gitea/workflows/pipeline-test.yaml index cb2d6c0..a85077c 100644 --- a/.gitea/workflows/pipeline-test.yaml +++ b/.gitea/workflows/pipeline-test.yaml @@ -72,11 +72,11 @@ jobs: run: | rsync -avz --delete ./ verua.info@verua.info:/preview.verua.info/ env: - RSYNC_RSH: 'ssh -o StrictHostKeyChecking=no' + RSYNC_RSH: 'ssh -p 2121 -o StrictHostKeyChecking=no' - name: Deploy to Production if: env.myEnv_env == 'production' run: | rsync -avz --delete ./ verua.info@verua.info:/httpdocs/ env: - RSYNC_RSH: 'ssh -o StrictHostKeyChecking=no' + RSYNC_RSH: 'ssh -p 2121 -o StrictHostKeyChecking=no'