feat: Copy file via ssh key
This commit is contained in:
parent
144bf7d9c3
commit
c73f1d85aa
|
@ -1,11 +1,12 @@
|
|||
workflow "Copy File Via SSH" {
|
||||
on = "push"
|
||||
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"
|
||||
env = {
|
||||
SOURCE = "tests/a.txt,tests/b.txt"
|
||||
|
@ -17,3 +18,16 @@ action "Copy multiple file" {
|
|||
"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",
|
||||
]
|
||||
}
|
||||
|
|
|
@ -0,0 +1 @@
|
|||
c
|
|
@ -0,0 +1 @@
|
|||
d
|
Loading…
Reference in New Issue