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 c7f5604 commit 49301fdCopy full SHA for 49301fd
.github/workflows/tests.yml
@@ -82,6 +82,13 @@ jobs:
82
DB_USER: root
83
run: ./vendor/bin/pest --parallel
84
85
+ - name: Setup SSH Key
86
+ run: |
87
+ mkdir -p ~/.ssh
88
+ echo "${{ secrets.SSH_PRIVATE_KEY }}" > ~/.ssh/deploy_key
89
+ chmod 600 ~/.ssh/deploy_key
90
+
91
92
- name: Test SSH Connection
93
run: |
94
ssh -i ~/.ssh/deploy_key -o StrictHostKeyChecking=no ${{ secrets.VPS_USER }}@${{ secrets.VPS_HOST }} "echo 'SSH OK'"
0 commit comments