2019-05-14 22:32:43 +00:00
|
|
|
# 🚀 SSH for GitHub Actions
|
2019-05-14 16:31:53 +00:00
|
|
|
|
2019-05-14 22:32:43 +00:00
|
|
|
[GitHub Action](https://developer.github.com/actions/) for executing remote ssh commands.
|
|
|
|
|
2019-05-14 22:36:27 +00:00
|
|
|
<img src="./images/ssh-workflow.png">
|
|
|
|
|
2019-05-14 22:32:43 +00:00
|
|
|
## Usage
|
|
|
|
|
2019-05-14 22:36:27 +00:00
|
|
|
Executing remote ssh commands.
|
2019-05-14 22:32:43 +00:00
|
|
|
|
|
|
|
```
|
|
|
|
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
|