GitHub30 / action-tmate

Debug your GitHub Actions via SSH by using tmate to get access to the runner system itself.

Home Page:https://github.com/marketplace/actions/debugging-with-tmate

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Debug your GitHub Actions by using tmate

This GitHub Action offers you a direct way to interact with the host system on which the actual scripts (Actions) will run.

Getting Started

By using this minimal example a tmate session will be created.

name: CI
on: [push]
jobs:
  build:
    runs-on: ubuntu-latest
    steps:
    - uses: actions/checkout@v1
    - name: Setup tmate session
      uses: mxschmitt/action-tmate@v1

To get the connection string, just open the Checks tab in your Pull Request and scroll to the bottom. There you can connect either directly per SSH or via a web based terminal.

alt text

About

Debug your GitHub Actions via SSH by using tmate to get access to the runner system itself.

https://github.com/marketplace/actions/debugging-with-tmate

License:MIT License


Languages

Language:TypeScript 88.3%Language:JavaScript 11.7%