From 4beffcfa2ffec24e2169cac2fac6af77b8cacb44 Mon Sep 17 00:00:00 2001 From: highperfocused Date: Wed, 21 Jan 2026 22:30:06 +0100 Subject: [PATCH] fix: remove StrictHostKeyChecking option from SSH command in deploy workflow --- .github/workflows/deploy.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 4249f18..998c0fb 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -36,7 +36,7 @@ jobs: USER: ${{ secrets.VPS_USER }} PORT: ${{ secrets.VPS_PORT }} run: | - ssh -p "${PORT:-22}" -o StrictHostKeyChecking=yes "${USER}@${HOST}" << 'EOF' + ssh -p "${PORT:-22}" "${USER}@${HOST}" << 'EOF' set -euo pipefail APP_DIR="/root/relay"