* build: use dynamic local tunnels for ssh debugging Co-authored-by: Shelley Vohr <shelley.vohr@gmail.com> * weeee Co-authored-by: Samuel Attard <samuel.r.attard@gmail.com> * that'll do Co-authored-by: Samuel Attard <samuel.r.attard@gmail.com> * chore: pretty output Co-authored-by: Samuel Attard <samuel.r.attard@gmail.com> * build: allow ssh input Co-authored-by: Shelley Vohr <shelley.vohr@gmail.com> --------- Co-authored-by: trop[bot] <37223003+trop[bot]@users.noreply.github.com> Co-authored-by: Shelley Vohr <shelley.vohr@gmail.com> Co-authored-by: Samuel Attard <samuel.r.attard@gmail.com>
20 lines
510 B
YAML
20 lines
510 B
YAML
name: Debug via SSH
|
|
description: Setup a SSH server with a tunnel to access it to debug via SSH.
|
|
inputs:
|
|
tunnel:
|
|
description: 'Enable SSH tunneling via cloudflared'
|
|
required: true
|
|
default: 'false'
|
|
timeout:
|
|
description: 'SSH session timeout in seconds'
|
|
required: false
|
|
type: number
|
|
default: 3600
|
|
runs:
|
|
using: composite
|
|
steps:
|
|
- run: $GITHUB_ACTION_PATH/setup-ssh.sh
|
|
shell: bash
|
|
env:
|
|
TUNNEL: ${{ inputs.tunnel }}
|
|
TIMEOUT: ${{ inputs.timeout }}
|