From c22c1a55557a1f705cca4cf6a27ce4784e1a4011 Mon Sep 17 00:00:00 2001 From: Steven Agyekum Date: Wed, 4 Dec 2019 18:45:06 +0100 Subject: [PATCH] Update action.yml --- action.yml | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/action.yml b/action.yml index b030baa..1747954 100644 --- a/action.yml +++ b/action.yml @@ -2,16 +2,20 @@ name: 'Rsync Deployments Action' description: 'GitHub Action for deploying code via rsync over ssh' author: 'Burnett01' inputs: - swtiches: - description: 'API method to use' + switches: + description: 'The switches' required: true rsh: - description: 'Github repository token' - required: true + description: 'The remote shell argument' + required: false + default: '' path: - description: 'Repository owner. Default: Current repository owner' + description: 'The local path' + required: false + default: '' upload_path: - description: 'Repository name. Default: Current repository name' + description: 'The remote path' + required: true runs: using: 'docker' image: 'Dockerfile'