From 65d502c2d32c1efdf42c5cbc10c79d296eb3cc81 Mon Sep 17 00:00:00 2001 From: dcorral Date: Thu, 6 Nov 2025 17:45:35 +0100 Subject: [PATCH] Fix port arg --- .gitea/workflows/deploy.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/deploy.yml b/.gitea/workflows/deploy.yml index 71294da..ebf19ba 100644 --- a/.gitea/workflows/deploy.yml +++ b/.gitea/workflows/deploy.yml @@ -25,7 +25,7 @@ jobs: - name: Deploy via Git Pull and Rsync run: | - ssh -P 2222 ${{ secrets.DEPLOY_USER }}@${{ secrets.DEPLOY_SERVER }} " + ssh -p 2222 ${{ secrets.DEPLOY_USER }}@${{ secrets.DEPLOY_SERVER }} " cd ${{ secrets.DEPLOY_PATH }} && git fetch origin && git reset --hard origin/master @@ -33,7 +33,7 @@ jobs: - name: Restart docker container run: | - ssh -P 2222 ${{ secrets.DEPLOY_USER }}@${{ secrets.DEPLOY_SERVER }} " + ssh -p 2222 ${{ secrets.DEPLOY_USER }}@${{ secrets.DEPLOY_SERVER }} " cd ${{ secrets.DEPLOY_PATH }} && docker compose down && docker compose up --build -d