Go to file
Bo-Yi Wu a072381ac2 docs: update readme 2019-05-11 17:04:21 +08:00
.github chore: update title 2019-05-11 17:03:14 +08:00
images docs: update readme 2019-05-11 17:04:21 +08:00
tests feat: initial 2019-05-11 17:01:31 +08:00
Dockerfile feat: initial 2019-05-11 17:01:31 +08:00
LICENSE Initial commit 2019-05-11 14:27:38 +08:00
README.md docs: update readme 2019-05-11 17:04:21 +08:00
entrypoint.sh feat: initial 2019-05-11 17:01:31 +08:00

README.md

🚀 SCP for GitHub Actions

GitHub Action for copying files and artifacts via SSH.

Usage

copy files and artifacts via SSH as blow.

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",
  ]
}

Example

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",
  ]
}