feat: initial

This commit is contained in:
Bo-Yi Wu
2019-05-11 17:01:31 +08:00
parent d4a2365362
commit 7b4ff3269b
6 changed files with 89 additions and 2 deletions

19
.github/main.workflow vendored Normal file
View File

@ -0,0 +1,19 @@
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",
]
}