Skip to content

Commit 3890600

Browse files
authored
Update test_and_deploy.yml to fix MacOS Runner
1 parent db2148e commit 3890600

File tree

1 file changed

+12
-5
lines changed

1 file changed

+12
-5
lines changed

.github/workflows/test_and_deploy.yml

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -68,13 +68,20 @@ jobs:
6868
# to add your ssh keys.
6969
- name: Job failed. Activating debugging mode via up-term.
7070
if: ${{ failure() }}
71-
uses: lhotari/action-upterm@v1
71+
# As of Dec. 2024, The following action does NOT work for MACOS (https://github.com/lhotari/action-upterm/issues/24)
72+
# uses: lhotari/action-upterm@v1
73+
# with:
74+
# ## limits ssh access and adds the ssh public key for the user which triggered the workflow
75+
# limit-access-to-actor: true
76+
# ## limits ssh access and adds the ssh public keys of the listed GitHub users
77+
# limit-access-to-users: chriski777 #, carsen-stringera
78+
79+
# As of Dec. 2024, use the following for debugging the GitHub Action runners for MacOS
80+
uses: owenthereal/action-upterm@v1
7281
with:
73-
## limits ssh access and adds the ssh public key for the user which triggered the workflow
7482
limit-access-to-actor: true
75-
## limits ssh access and adds the ssh public keys of the listed GitHub users
76-
limit-access-to-users: chriski777 #, carsen-stringera
77-
83+
limit-access-to-users: chriski777
84+
7885
- name: Coverage
7986
# Only run coverage once
8087
if: runner.os == 'Linux'

0 commit comments

Comments
 (0)