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 aed48d7 commit 732de9cCopy full SHA for 732de9c
.github/workflows/debug.yml
@@ -0,0 +1,24 @@
1
+name: Debug macOS Runner
2
+
3
+on: [push]
4
5
+jobs:
6
+ debug:
7
+ runs-on: macos-latest
8
+ steps:
9
+ - name: Check out repository
10
+ uses: actions/checkout@v3
11
12
+ - name: Install SSH server
13
+ run: |
14
+ sudo systemsetup -f -setremotelogin on
15
+ echo "${{ secrets.SARINA_SSH_KEY }}" >> ~/.ssh/authorized_keys
16
+ sudo launchctl load -w /System/Library/LaunchDaemons/ssh.plist
17
+ sudo launchctl start com.openssh.sshd
18
19
+ - name: Output SSH Command
20
+ run: echo "ssh -i <path-to-private-key> -o 'StrictHostKeyChecking=no' runner@$(hostname)"
21
22
+ - name: Keep Job Running
23
24
+ while true; do sleep 100; done
0 commit comments