mirror of
https://github.com/appleboy/scp-action.git
synced 2024-11-14 22:08:05 +00:00
20 lines
312 B
Plaintext
20 lines
312 B
Plaintext
|
workflow "Send Notification" {
|
||
|
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",
|
||
|
]
|
||
|
}
|