fix(deploy.yml): enhance SSH connection testing for deployment

- Added options to disable strict host key checking and enable batch mode for improved SSH connection reliability during deployment.
This commit is contained in:
Torsten Schulz (local)
2026-03-30 11:40:00 +02:00
parent 5f813438a8
commit 287ac3ca75

View File

@@ -20,6 +20,8 @@ jobs:
- name: Test SSH connection
run: |
ssh -i ~/.ssh/id_ed25519 \
-o StrictHostKeyChecking=no \
-o BatchMode=yes \
-p "${{ secrets.PROD_PORT }}" \
"${{ secrets.PROD_USER }}@${{ secrets.PROD_HOST }}" \
"echo SSH OK"