feat: Copy file via ssh key

This commit is contained in:
Bo-Yi Wu 2019-05-11 19:28:30 +08:00
parent 144bf7d9c3
commit c73f1d85aa
3 changed files with 18 additions and 2 deletions

18
.github/main.workflow vendored
View file

@ -1,11 +1,12 @@
workflow "Copy File Via SSH" { workflow "Copy File Via SSH" {
on = "push" on = "push"
resolves = [ resolves = [
"Copy multiple file", "Copy file via ssh password",
"Copy file via ssh key",
] ]
} }
action "Copy multiple file" { action "Copy file via ssh password" {
uses = "appleboy/scp-action@master" uses = "appleboy/scp-action@master"
env = { env = {
SOURCE = "tests/a.txt,tests/b.txt" SOURCE = "tests/a.txt,tests/b.txt"
@ -17,3 +18,16 @@ action "Copy multiple file" {
"PASSWORD", "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",
]
}

1
tests/c.txt Normal file
View file

@ -0,0 +1 @@
c

1
tests/d.txt Normal file
View file

@ -0,0 +1 @@
d