GitHub Actions for executing remote ssh commands.
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.
Go to file
Bo-Yi Wu b2e4f0522d update example.
Signed-off-by: Bo-Yi Wu <appleboy.tw@gmail.com>
6 years ago
.github update example. 6 years ago
images update example. 6 years ago
Dockerfile feat: initial 6 years ago
LICENSE Initial commit 6 years ago
README.md update example. 6 years ago
entrypoint.sh feat: initial 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