diff --git a/README.md b/README.md index 3c62dd8..7f9c8dc 100644 --- a/README.md +++ b/README.md @@ -45,8 +45,8 @@ out: *** See [action.yml](./action.yml) for more detailed information. -* host - remote host -* port - remote port, default is `22` +* host - ssh host +* port - ssh port, default is `22` * username - ssh username * password - ssh password * passphrase - the passphrase is usually to encrypt the private key diff --git a/action.yml b/action.yml index 588dab2..c76b730 100644 --- a/action.yml +++ b/action.yml @@ -3,9 +3,9 @@ description: 'Executing remote ssh commands' author: 'Bo-Yi Wu' inputs: host: - description: 'ssh remote host' + description: 'ssh host' port: - description: 'ssh remote port' + description: 'ssh port' default: 22 passphrase: description: 'ssh key passphrase' @@ -17,7 +17,7 @@ inputs: description: 'synchronous execution if multiple hosts' default: false timeout: - description: 'timeout for ssh to remote host' + description: 'timeout for ssh to host' default: "30s" command_timeout: description: 'timeout for ssh command' @@ -27,9 +27,9 @@ inputs: key_path: description: 'path of ssh private key' proxy_host: - description: 'ssh proxy remote host' + description: 'ssh proxy host' proxy_port: - description: 'ssh proxy remote port' + description: 'ssh proxy port' default: 22 proxy_username: description: 'ssh proxy username'