mirror of
https://gitea.com/actions/appleboy-ssh-action.git
synced 2024-11-23 02:29:37 +01:00
31 lines
505 B
HCL
31 lines
505 B
HCL
workflow "Remote ssh commands" {
|
|
on = "push"
|
|
resolves = [
|
|
"Executing remote ssh commands",
|
|
"Support Private Key",
|
|
]
|
|
}
|
|
|
|
action "Executing remote ssh commands" {
|
|
uses = "appleboy/ssh-action@master"
|
|
secrets = [
|
|
"HOST",
|
|
"PASSWORD",
|
|
]
|
|
args = [
|
|
"--user", "actions",
|
|
"--script", "whoami",
|
|
]
|
|
}
|
|
|
|
action "Support Private Key" {
|
|
uses = "appleboy/ssh-action@master"
|
|
secrets = [
|
|
"HOST",
|
|
"KEY",
|
|
]
|
|
args = [
|
|
"--user", "actions",
|
|
"--script", "ls -al",
|
|
]
|
|
}
|