Skip to content

Commit 57b99ca

Browse files
committed
[Fix] Update deploy.yml configuration2
1 parent 4b916b0 commit 57b99ca

1 file changed

Lines changed: 8 additions & 0 deletions

File tree

.github/workflows/deploy.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,14 @@ jobs:
5050
run: |
5151
docker push ${{ secrets.DOCKERFILE_USERNAME }}/${{ secrets.DOCKERFILE_REPO_NAME }}:latest
5252
53+
# (8.5) SSH 디버깅 - -vvv로 접속 로그 확인
54+
- name: 🔍 SSH Deep Debug with -vvv
55+
run: |
56+
mkdir -p ~/.ssh
57+
echo "${{ secrets.SERVER_SSH_KEY }}" > ~/.ssh/id_rsa
58+
chmod 600 ~/.ssh/id_rsa
59+
ssh -vvv -o StrictHostKeyChecking=no ${{ secrets.SERVER_USERNAME }}@${{ secrets.SERVER_HOST }} echo "✅ SSH 연결 성공"
60+
5361
# (9) NCP 인스턴스에 boombim 디렉토리 생성
5462
- name: Create directory on NCP Instance
5563
uses: appleboy/ssh-action@master

0 commit comments

Comments
 (0)