scp-action/action.yml

39 lines
976 B
YAML
Raw Normal View History

2019-09-28 02:42:13 +00:00
name: 'SCP Command to Transfer Files'
description: 'How to Use SCP Command to Transfer Files/Folders in Linux'
author: 'Bo-Yi Wu'
inputs:
host:
description: 'scp remote host'
port:
description: 'scp remote port'
username:
description: 'scp username'
password:
description: 'scp password'
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'
2019-09-28 04:41:21 +00:00
default: "1m"
2019-09-28 02:42:13 +00:00
key:
description: 'content of ssh private key. ex raw content of ~/.ssh/id_rsa'
key_path:
description: 'path of ssh private key'
target:
2019-09-28 04:13:03 +00:00
description: 'target path on the server'
2019-09-28 02:42:13 +00:00
source:
description: 'scp file list'
rm:
description: 'remove target folder before upload data'
2019-09-28 04:26:40 +00:00
strip_components:
description: 'remove the specified number of leading path elements'
default: 0
2019-09-28 02:42:13 +00:00
runs:
using: 'docker'
image: 'Dockerfile'
branding:
icon: 'copy'
color: 'gray-dark'