We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 27a75c1 commit d6bb0c4Copy full SHA for d6bb0c4
.github/workflows/gradle.yml
@@ -71,7 +71,10 @@ jobs:
71
# SSH 연결 테스트
72
- name: Test SSH connection
73
run: |
74
- ssh -i ~/.ssh/deploy_key -o StrictHostKeyChecking=no ${{ secrets.SERVER_USER }}@${{ secrets.SERVER_IP }} 'echo "Connection test successful"'
+ chmod 600 ~/.ssh/deploy_key
75
+ eval $(ssh-agent -s)
76
+ ssh-add ~/.ssh/deploy_key
77
+ ssh -v -i ~/.ssh/deploy_key -o StrictHostKeyChecking=no ${{ secrets.SERVER_USER }}@${{ secrets.SERVER_IP }} 'echo "Connection test successful"'
78
79
# JAR 파일 전송
80
- name: Copy JAR to Server
0 commit comments