SSH Debug #36
Workflow file for this run
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
name: SSH Debug | |
run-name: "SSH Debug ${{ inputs.runner }}" | |
on: | |
pull_request: {} | |
push: | |
branches: | |
- '**' | |
workflow_dispatch: | |
inputs: | |
runner: | |
type: string | |
required: True | |
description: The runner to start a tunnel on. | |
offer: | |
type: string | |
required: True | |
description: SDP Offer | |
public_key: | |
type: string | |
required: True | |
description: Your public key for ssh access. | |
debug: | |
required: false | |
type: boolean | |
default: false | |
description: Run sshd with debug enabled. | |
jobs: | |
debug: | |
runs-on: ${{ inputs.runner }} | |
if: ${{ inputs.runner }} | |
environment: ci | |
steps: | |
- name: Checkout Source Code | |
uses: actions/checkout@v4 | |
- uses: ./.github/actions/ssh-tunnel | |
with: | |
public_key: ${{ inputs.public_key }} | |
offer: ${{ inputs.offer }} | |
debug: ${{ inputs.debug }} |