mirror of
https://github.com/layer-systems/relay.git
synced 2026-06-04 09:31:15 +02:00
fix: remove StrictHostKeyChecking option from SSH command in deploy workflow
This commit is contained in:
2
.github/workflows/deploy.yml
vendored
2
.github/workflows/deploy.yml
vendored
@@ -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"
|
||||
|
||||
Reference in New Issue
Block a user