generated from actions/typescript-action
-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
action.yml
35 lines (33 loc) · 885 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
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"
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"
runs:
using: "node20"
main: "dist/index.js"
branding:
icon: "terminal"
color: "gray-dark"