docs: multiple command

This commit is contained in:
Bo-Yi Wu 2019-05-15 06:52:59 +08:00
parent 77e02d0fad
commit 5bb5f67611
2 changed files with 31 additions and 0 deletions

14
.github/main.workflow vendored
View File

@ -3,6 +3,7 @@ workflow "Remote ssh commands" {
resolves = [ resolves = [
"Executing remote ssh commands", "Executing remote ssh commands",
"Support Private Key", "Support Private Key",
"Multiple Commands",
] ]
} }
@ -29,3 +30,16 @@ action "Support Private Key" {
"--script", "'ls -al'", "--script", "'ls -al'",
] ]
} }
action "Multiple Commands" {
uses = "appleboy/ssh-action@master"
secrets = [
"HOST",
"KEY",
]
args = [
"--user", "actions",
"--script", "'whoami'",
"--script", "'ls -al'",
]
}

View File

@ -65,6 +65,23 @@ action "Support Private Key" {
} }
``` ```
Multiple Commands
```
action "Multiple Commands" {
uses = "appleboy/ssh-action@master"
secrets = [
"HOST",
"KEY",
]
args = [
"--user", "actions",
"--script", "'whoami'",
"--script", "'ls -al'",
]
}
```
see the detail of `drone-ssh` command see the detail of `drone-ssh` command
``` ```