You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
b2e4f0522d
Signed-off-by: Bo-Yi Wu <appleboy.tw@gmail.com> |
6 years ago | |
---|---|---|
.github | 6 years ago | |
images | 6 years ago | |
Dockerfile | 6 years ago | |
LICENSE | 6 years ago | |
README.md | 6 years ago | |
entrypoint.sh | 6 years ago |
README.md
🚀 SSH for GitHub Actions
GitHub Action for executing remote ssh commands.
Usage
Executing remote ssh commands.
action "Copy multiple file" {
uses = "appleboy/scp-action@master"
env = {
HOST = "example.com"
USERNAME = "foo"
PASSWORD = "bar"
PORT = "22"
SOURCE = "tests/a.txt,tests/b.txt"
TARGET = "/home/foo/test"
}
secrets = [
"PASSWORD",
]
}
Environment variables
- HOST - ssh server host
- PORT - ssh server port
- USERNAME - ssh server username
- PASSWORD - ssh server password
- KEY - ssh server private key
- SCRIPT - execute the scripts