mirror of
https://github.com/layer-systems/relay.git
synced 2026-06-04 17:41:11 +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 }}
|
USER: ${{ secrets.VPS_USER }}
|
||||||
PORT: ${{ secrets.VPS_PORT }}
|
PORT: ${{ secrets.VPS_PORT }}
|
||||||
run: |
|
run: |
|
||||||
ssh -p "${PORT:-22}" -o StrictHostKeyChecking=yes "${USER}@${HOST}" << 'EOF'
|
ssh -p "${PORT:-22}" "${USER}@${HOST}" << 'EOF'
|
||||||
set -euo pipefail
|
set -euo pipefail
|
||||||
|
|
||||||
APP_DIR="/root/relay"
|
APP_DIR="/root/relay"
|
||||||
|
|||||||
Reference in New Issue
Block a user