Skip to content

Commit e0a26c1

Browse files
authored
build: 3.1.0
* feat: updated ssh2 options
1 parent 0a62cad commit e0a26c1

File tree

4 files changed

+21
-6
lines changed

4 files changed

+21
-6
lines changed

package-lock.json

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@runnerty/executor-shell",
3-
"version": "3.1.0-rc",
3+
"version": "3.1.0",
44
"description": "Runnerty module: shell executor",
55
"author": "Runnerty Tech",
66
"license": "MIT",

scaffold/config.json

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,18 @@
55
"type": "@runnerty-executor-shell"
66
},
77
{
8-
"id": "shell_ssh",
8+
"id": "shell_ssh_privatekey",
99
"type": "@runnerty-executor-shell",
1010
"host": "remote.server.com",
1111
"username": "runnerty",
1212
"privateKey": "./ssh/privateKeyFile.pem"
13+
},
14+
{
15+
"id": "shell_ssh_password",
16+
"type": "@runnerty-executor-shell",
17+
"host": "remote.server.com",
18+
"username": "runnerty",
19+
"password": "runnerty"
1320
}
1421
]
1522
}

scaffold/plan.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,14 @@
4444
"command": "echo",
4545
"args": ["hello world"]
4646
}
47+
},
48+
{
49+
"id": "SHELL_SSH_SIMPLE",
50+
"name": "SHELL SIMPLE SAMPLE",
51+
"exec": {
52+
"id": "shell_ssh_privatekey",
53+
"command": "touch /tmp/hello-world"
54+
}
4755
}
4856
]
4957
}

0 commit comments

Comments
 (0)