chore: add github actions config

This commit is contained in:
Bo-Yi Wu 2019-09-28 10:42:13 +08:00
parent 1a31789cbc
commit a6224ab4f0
1 changed files with 33 additions and 0 deletions

33
action.yml Normal file
View File

@ -0,0 +1,33 @@
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'
command_timeout:
description: 'timeout for scp command'
key:
description: 'content of ssh private key. ex raw content of ~/.ssh/id_rsa'
key_path:
description: 'path of ssh private key'
target:
description: 'Target path on the server'
source:
description: 'scp file list'
rm:
description: 'remove target folder before upload data'
runs:
using: 'docker'
image: 'Dockerfile'
branding:
icon: 'copy'
color: 'gray-dark'