-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaction.yaml
More file actions
41 lines (34 loc) · 945 Bytes
/
action.yaml
File metadata and controls
41 lines (34 loc) · 945 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
name: 'Set up SSH Server'
description: 'Sets up an SSH server on Windows, Linux, or macOS with configurable keys'
branding:
icon: 'server'
color: 'blue'
inputs:
port:
description: 'SSH server port (default: 2222)'
required: false
default: '2222'
user:
description: 'SSH username. Use :current to get the current user name (default: :current)'
required: false
default: ':current'
authorized-keys:
description: 'Authorized public keys (one per line)'
required: false
use-actor-ssh-keys:
description: 'Whether to authorize the public SSH keys of the user triggering the workflow'
required: false
default: 'false'
outputs:
hostname:
description: 'SSH server hostname'
port:
description: 'SSH server port'
username:
description: 'SSH username'
host-keys:
description: 'SSH Host public keys'
runs:
using: 'node20'
main: 'dist/index.js'
post: 'dist/index.js'