From 934e231ba71a4810c44430ed8caf15458ba4f198 Mon Sep 17 00:00:00 2001 From: Robin Dittmar Date: Sun, 6 Sep 2026 18:24:37 +0200 Subject: [PATCH] fix: deploy.yml ssh command was cut off --- .gitea/workflows/deploy.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/deploy.yml b/.gitea/workflows/deploy.yml index 77b0898..0b195ad 100644 --- a/.gitea/workflows/deploy.yml +++ b/.gitea/workflows/deploy.yml @@ -59,7 +59,7 @@ jobs: DEPLOY_USER: ${{ secrets.DEPLOY_USER }} DEPLOY_HOST: ${{ secrets.DEPLOY_HOST }} run: | - ssh -i ~/.ssh/deploy_key -o UserKnownHostsFile=~/.ssh/kn + ssh -i ~/.ssh/deploy_key -o UserKnownHostsFile=~/.ssh/known_hosts \ "$DEPLOY_USER@$DEPLOY_HOST" \ "cd $DEPLOY_PATH && git pull && docker compose up -d --build" -- 2.54.0