mirror of
https://gitea.com/actions/appleboy-ssh-action.git
synced 2024-11-22 18:19:36 +01:00
19 lines
288 B
Text
19 lines
288 B
Text
|
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",
|
||
|
]
|
||
|
}
|