mirror of
https://github.com/appleboy/scp-action.git
synced 2024-11-15 06:28:07 +00:00
48 lines
851 B
HCL
48 lines
851 B
HCL
workflow "Copy File Via SSH" {
|
|
on = "push"
|
|
resolves = [
|
|
"Copy file via ssh password",
|
|
"Copy file via ssh key",
|
|
"Add source in command",
|
|
]
|
|
}
|
|
|
|
action "Copy file via ssh password" {
|
|
uses = "appleboy/scp-action@master"
|
|
env = {
|
|
SOURCE = "tests/a.txt,tests/b.txt"
|
|
TARGET = "/home/actions/test"
|
|
}
|
|
secrets = [
|
|
"HOST",
|
|
"USERNAME",
|
|
"PASSWORD",
|
|
]
|
|
}
|
|
|
|
action "Copy file via ssh key" {
|
|
uses = "appleboy/scp-action@master"
|
|
env = {
|
|
SOURCE = "tests/a.txt,tests/b.txt"
|
|
TARGET = "/home/actions/test"
|
|
}
|
|
secrets = [
|
|
"HOST",
|
|
"USERNAME",
|
|
"KEY",
|
|
]
|
|
}
|
|
|
|
action "Add source in command" {
|
|
uses = "appleboy/scp-action@master"
|
|
env = {
|
|
TARGET = "/home/actions/test1234"
|
|
}
|
|
secrets = [
|
|
"HOST",
|
|
"USERNAME",
|
|
"KEY",
|
|
]
|
|
args = ["--source", "tests/a.txt", "--source", "tests/b.txt"]
|
|
}
|