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 8ab9dc3 commit 0040925Copy full SHA for 0040925
.github/workflows/ci.yml
@@ -32,8 +32,11 @@ jobs:
32
33
- name: SSH into instance and restart Minikube
34
run: |
35
+ mkdir -p ~/.ssh # Create .ssh directory if it doesn't exist
36
+ touch ~/.ssh/known_hosts # Create known_hosts file if it doesn't exist
37
ssh-keyscan -H ${{ secrets.HOST }} >> ~/.ssh/known_hosts
38
chmod 600 ~/.ssh/id_rsa
39
ssh -o StrictHostKeyChecking=no -i ~/.ssh/id_rsa ${{ secrets.USERNAME }}@${{ secrets.HOST }} "minikube start --driver=docker"
40
env:
- SSH_AUTH_SOCK: /dev/null
41
+ SSH_AUTH_SOCK: /dev/null
42
+
0 commit comments