debug: SSH 키 형식 확인 스텝 추가

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
이희원 2026-06-20 04:18:37 +09:00
parent 8e3f6754c8
commit e88a6f242e
1 changed files with 9 additions and 0 deletions

View File

@ -24,6 +24,15 @@ jobs:
- name: Build - name: Build
run: npm run build run: npm run build
- name: Debug SSH key
run: |
echo "=== key line count ==="
echo "${{ secrets.SSH_PRIVATE_KEY }}" | wc -l
echo "=== first line ==="
echo "${{ secrets.SSH_PRIVATE_KEY }}" | head -1
echo "=== last line ==="
echo "${{ secrets.SSH_PRIVATE_KEY }}" | tail -1
- name: Deploy via SCP - name: Deploy via SCP
run: | run: |
mkdir -p ~/.ssh mkdir -p ~/.ssh