Go to file
Bo-Yi Wu b2e4f0522d update example.
Signed-off-by: Bo-Yi Wu <appleboy.tw@gmail.com>
2019-05-15 06:36:27 +08:00
.github update example. 2019-05-15 06:36:27 +08:00
images update example. 2019-05-15 06:36:27 +08:00
Dockerfile feat: initial 2019-05-15 00:31:53 +08:00
LICENSE Initial commit 2019-05-12 10:28:19 +08:00
README.md update example. 2019-05-15 06:36:27 +08:00
entrypoint.sh feat: initial 2019-05-15 00:31:53 +08:00

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