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.
appleboy-scp-action/.github/main.workflow

20 lines
312 B
HCL

workflow "Copy File Via SSH" {
on = "push"
resolves = [
"Copy multiple file",
]
}
action "Copy multiple file" {
uses = "appleboy/scp-action@master"
env = {
SOURCE = "tests/a.txt,tests/b.txt"
TARGET = "/home/actions/test"
}
secrets = [
"HOST",
"USERNAME",
"PASSWORD",
]
}