scp-action/action.yml

81 lines
2.4 KiB
YAML
Raw Permalink Normal View History

name: "SCP Command to Transfer Files"
description: "How to Use SCP Command to Transfer Files/Folders in Linux"
author: "Bo-Yi Wu"
2019-09-28 02:42:13 +00:00
inputs:
host:
description: "scp remote host"
2019-09-28 02:42:13 +00:00
port:
description: "scp remote port"
default: "22"
2019-09-28 02:42:13 +00:00
username:
description: "scp username"
2019-09-28 02:42:13 +00:00
password:
description: "scp password"
protocol:
description: "The IP protocol to use. Valid values are 'tcp'. 'tcp4' or 'tcp6'. Default to tcp."
default: "tcp"
2019-09-28 02:42:13 +00:00
timeout:
description: "timeout for ssh to remote host"
2019-09-28 04:41:21 +00:00
default: "30s"
2019-09-28 02:42:13 +00:00
command_timeout:
description: "timeout for scp command"
default: "10m"
2019-09-28 02:42:13 +00:00
key:
description: "content of ssh private key. ex raw content of ~/.ssh/id_rsa"
2019-09-28 02:42:13 +00:00
key_path:
description: "path of ssh private key"
2020-01-20 15:07:25 +00:00
passphrase:
description: "ssh key passphrase"
fingerprint:
description: "fingerprint SHA256 of the host public key, default is to skip verification"
use_insecure_cipher:
description: "include more ciphers with use_insecure_cipher"
2019-09-28 02:42:13 +00:00
target:
description: "target path on the server, must be a directory path."
2019-09-28 02:42:13 +00:00
source:
description: "scp file list"
2019-09-28 02:42:13 +00:00
rm:
description: "remove target folder before upload data"
2020-05-21 15:33:05 +00:00
debug:
description: "enable debug message"
2019-09-28 04:26:40 +00:00
strip_components:
description: "remove the specified number of leading path elements"
overwrite:
description: "use --overwrite flag with tar"
tar_dereference:
description: "use --dereference flag with tar"
tar_tmp_path:
description: "temporary path for tar file on the dest host"
tar_exec:
description: "temporary path for tar file on the dest host"
default: "tar"
2020-01-20 15:08:15 +00:00
proxy_host:
description: "ssh proxy remote host"
2020-01-20 15:08:15 +00:00
proxy_port:
description: "ssh proxy remote port"
default: "22"
2020-01-20 15:08:15 +00:00
proxy_username:
description: "ssh proxy username"
2020-01-20 15:08:15 +00:00
proxy_password:
description: "ssh proxy password"
2020-01-20 15:08:15 +00:00
proxy_passphrase:
description: "ssh proxy key passphrase"
2020-01-20 15:08:15 +00:00
proxy_timeout:
description: "timeout for ssh to proxy host"
2020-01-20 15:08:15 +00:00
default: "30s"
proxy_key:
description: "content of ssh proxy private key. ex raw content of ~/.ssh/id_rsa"
2020-01-20 15:08:15 +00:00
proxy_key_path:
description: "path of ssh proxy private key"
proxy_fingerprint:
description: "fingerprint SHA256 of the host public key, default is to skip verification"
proxy_use_insecure_cipher:
description: "include more ciphers with use_insecure_cipher"
2019-09-28 02:42:13 +00:00
runs:
using: "docker"
image: "Dockerfile"
2019-09-28 02:42:13 +00:00
branding:
icon: "copy"
color: "gray-dark"