Compare commits

..

2 Commits

Author SHA1 Message Date
ByungCheol fcfb279b16 Merge branch 'dev' into main
CI / build (push) Has been cancelled
Deploy / deploy (push) Has been cancelled
fix(ci): SSH 개인키 CR 제거
2026-05-31 17:40:43 +09:00
ByungCheol 9e81029a7d fix(ci): SSH 개인키 파일에서 CR 제거 (Windows CRLF 시크릿 대응)
CI / build (push) Has been cancelled
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-05-31 17:40:41 +09:00
+1 -1
View File
@@ -47,7 +47,7 @@ jobs:
fi
mkdir -p ~/.ssh && chmod 700 ~/.ssh
printf '%s\n' "$DEPLOY_SSH_KEY" > ~/.ssh/id_deploy
printf '%s\n' "$DEPLOY_SSH_KEY" | tr -d '\r' > ~/.ssh/id_deploy
chmod 600 ~/.ssh/id_deploy
ssh-keyscan -p "$PORT" "$DEPLOY_HOST" >> ~/.ssh/known_hosts 2>/dev/null
SSH="ssh -p $PORT -i $HOME/.ssh/id_deploy -o StrictHostKeyChecking=yes"