feat: Copy file via ssh key
This commit is contained in:
parent
144bf7d9c3
commit
c73f1d85aa
3 changed files with 18 additions and 2 deletions
18
.github/main.workflow
vendored
18
.github/main.workflow
vendored
|
@ -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
1
tests/c.txt
Normal file
|
@ -0,0 +1 @@
|
||||||
|
c
|
1
tests/d.txt
Normal file
1
tests/d.txt
Normal file
|
@ -0,0 +1 @@
|
||||||
|
d
|
Loading…
Reference in a new issue