Skip to content

Commit

Permalink
fix workflow for testing ssh connection
Browse files Browse the repository at this point in the history
  • Loading branch information
tcarmet committed Nov 19, 2024
1 parent bdb5c16 commit c9a087d
Showing 1 changed file with 14 additions and 10 deletions.
24 changes: 14 additions & 10 deletions .github/workflows/ssh-runner.yaml
Original file line number Diff line number Diff line change
@@ -1,21 +1,25 @@
on:
workflow_dispatch: {}
workflow_dispatch:
inputs:
runner:
description: Type of runner
required: false
type: choice
default: ubuntu-latest
options:
- ubuntu-latest
- redhat8
- rocky8
- aws
- gcloud

name: ssh to runner

jobs:
ssh:
name: ssh ${{ matrix.name }}
strategy:
fail-fast: true
matrix:
name:
- ubuntu-latest
- redhat8
- rocky8
- aws
- ['self-hosted', 'ubuntu', 'focal', 'large', 'gcloud']
runs-on: ${{ matrix.name }}
runs-on: ${{ inputs.runner }}
steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down

0 comments on commit c9a087d

Please sign in to comment.