From 3289244796dc6fd5fb345e3da040484198bbc528 Mon Sep 17 00:00:00 2001 From: Owen Ou Date: Mon, 27 May 2024 12:03:10 -0700 Subject: [PATCH] Update `action-upterm` instruction --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 4b40328c..f58d2e50 100644 --- a/README.md +++ b/README.md @@ -103,7 +103,7 @@ Clients can connect to the host session via WebSocket as well: ssh -o ProxyCommand='upterm proxy wss://TOKEN@uptermd.upterm.dev' TOKEN@uptermd.upterm.dev: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.