From a6224ab4f08d3777831c66164f67d2020df6aec2 Mon Sep 17 00:00:00 2001 From: Bo-Yi Wu Date: Sat, 28 Sep 2019 10:42:13 +0800 Subject: [PATCH] chore: add github actions config --- action.yml | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 action.yml diff --git a/action.yml b/action.yml new file mode 100644 index 0000000..6cf2db1 --- /dev/null +++ b/action.yml @@ -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'