-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathaction.yml
More file actions
42 lines (40 loc) · 1.06 KB
/
Copy pathaction.yml
File metadata and controls
42 lines (40 loc) · 1.06 KB
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
42
name: "ssh-job"
description: "Execute any script through ssh"
author: "Marcin Jałocha"
inputs:
host:
required: true
description: "Target machine hostname or ip"
port:
required: true
description: "Port to use while connecting"
default: "22"
key:
description: "Ssh private key used to connect to target machine"
passphrase:
required: false
description: "Passphrase for the private key"
user:
description: "Ssh user"
password:
description: "Ssh password"
envs:
description: "Environment variables passed to the shell script"
ignoredEnvs:
description: "Environment variables that are ommited from passing to the shell"
command:
required: true
description: "Bash commands ran on target machine"
exportActionOptions:
required: false
description: "Export all action options to shell script"
tty:
required: false
default: "false"
description: "Allocate a pseudo-terminal (TTY) for the SSH command"
runs:
using: "node20"
main: "dist/index.js"
branding:
icon: "terminal"
color: "gray-dark"