We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent db4d5ce commit 4e32c3cCopy full SHA for 4e32c3c
.github/workflows/docker-backend.yml
@@ -50,6 +50,14 @@ jobs:
50
with:
51
ssh-private-key: ${{ secrets.SSH_KEY }}
52
53
+ - name: Configure SSH (disable host key checking)
54
+ run: |
55
+ mkdir -p ~/.ssh
56
+ echo "Host *" > ~/.ssh/config
57
+ echo " StrictHostKeyChecking no" >> ~/.ssh/config
58
+ echo " UserKnownHostsFile=/dev/null" >> ~/.ssh/config
59
+ chmod 600 ~/.ssh/config
60
+
61
- name: Execute SSH command on remote
62
run: |
63
ssh nilsj@nilss-mac-mini.tailed622e.ts.net
0 commit comments