You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
288 B
Plaintext
19 lines
288 B
Plaintext
6 years ago
|
workflow "Copy File Via SSH" {
|
||
|
on = "push"
|
||
|
resolves = [
|
||
|
"Executing remote ssh commands",
|
||
|
]
|
||
|
}
|
||
|
|
||
|
action "Executing remote ssh commands" {
|
||
|
uses = "appleboy/ssh-action@master"
|
||
|
secrets = [
|
||
|
"HOST",
|
||
|
"USERNAME",
|
||
|
"PASSWORD",
|
||
|
]
|
||
|
args = [
|
||
|
"--script", "whoami",
|
||
|
]
|
||
|
}
|