We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d51070f commit efa284dCopy full SHA for efa284d
1 file changed
.github/workflows/ci.yml
@@ -36,6 +36,9 @@ jobs:
36
echo "${{ secrets.SSH_PRIVATE_KEY }}" > private_key
37
chmod 600 private_key
38
39
+ - name: Test SSH Connection
40
+ run: ssh -o StrictHostKeyChecking=no -i private_key ubuntu@${{ secrets.SERVER_IP }} 'echo 연결되었습니다'
41
+
42
- name: Deploy files to server
43
run: |
44
rsync -avz -e "ssh -i private_key -o StrictHostKeyChecking=no" \
0 commit comments