Skip to content

Commit

Permalink
Update test_and_deploy.yml to fix MacOS Runner
Browse files Browse the repository at this point in the history
  • Loading branch information
chriski777 authored Jan 2, 2025
1 parent db2148e commit 3890600
Showing 1 changed file with 12 additions and 5 deletions.
17 changes: 12 additions & 5 deletions .github/workflows/test_and_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,13 +68,20 @@ jobs:
# to add your ssh keys.
- name: Job failed. Activating debugging mode via up-term.
if: ${{ failure() }}
uses: lhotari/action-upterm@v1
# As of Dec. 2024, The following action does NOT work for MACOS (https://github.com/lhotari/action-upterm/issues/24)
# uses: lhotari/action-upterm@v1
# with:
# ## limits ssh access and adds the ssh public key for the user which triggered the workflow
# limit-access-to-actor: true
# ## limits ssh access and adds the ssh public keys of the listed GitHub users
# limit-access-to-users: chriski777 #, carsen-stringera

# As of Dec. 2024, use the following for debugging the GitHub Action runners for MacOS
uses: owenthereal/action-upterm@v1
with:
## limits ssh access and adds the ssh public key for the user which triggered the workflow
limit-access-to-actor: true
## limits ssh access and adds the ssh public keys of the listed GitHub users
limit-access-to-users: chriski777 #, carsen-stringera

limit-access-to-users: chriski777

- name: Coverage
# Only run coverage once
if: runner.os == 'Linux'
Expand Down

0 comments on commit 3890600

Please sign in to comment.