-
-
Notifications
You must be signed in to change notification settings - Fork 57
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e196415
commit 3289244
Showing
1 changed file
with
2 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -103,7 +103,7 @@ Clients can connect to the host session via WebSocket as well: | |
ssh -o ProxyCommand='upterm proxy wss://[email protected]' [email protected]:443 | ||
``` | ||
|
||
## :bug: Debug GitHub Actions | ||
### Debug GitHub Actions | ||
|
||
`upterm` can be integrated with GitHub Actions to enable real-time SSH debugging, allowing you to interact directly with the runner system during workflow execution. This is achieved through [action-upterm](https://github.com/owenthereal/action-upterm), which sets up an `upterm` session within your CI pipeline. | ||
|
||
|
@@ -118,7 +118,7 @@ jobs: | |
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Setup upterm session | ||
uses: owenthereal/action-upterm@main | ||
uses: owenthereal/action-upterm@v1 | ||
``` | ||
This setup allows you to SSH into the workflow runner whenever you need to troubleshoot or inspect the execution environment. Find the SSH connection string in the `Checks` tab of your Pull Request or in the workflow logs. | ||
|