generated from actions/container-action
-
Notifications
You must be signed in to change notification settings - Fork 63
/
action.yml
39 lines (37 loc) · 972 Bytes
/
action.yml
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
name: 'Remote SSH Commands'
description: 'Run remote ssh commands'
author: 'fifsky@gmail.com'
inputs:
command:
description: "Command to execute on the remote server."
required: true
host:
description: "Hostname or IP address of the server."
required: false
default: "localhost"
user:
description: "Username for authentication."
required: false
default: "root"
port:
description: "Port number of the server."
required: false
default: "22"
key:
description: "String that contains a private key for either key-based or hostbased user authentication (OpenSSH format)"
required: false
keyfile:
description: "File location to an identity file"
required: false
pass:
description: "Password for authentication."
required: false
args:
description: "SSH parameters for example: -tt."
required: false
runs:
using: 'docker'
image: 'Dockerfile'
branding:
color: "green"
icon: "lock"