new inputs

This commit is contained in:
Steven Agyekum 2019-12-04 18:31:26 +01:00 committed by GitHub
parent 72f04677de
commit e9dd3cdb51
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 20 additions and 7 deletions

View File

@ -2,16 +2,29 @@ name: 'Rsync Deployments Action'
description: 'GitHub Action for deploying code via rsync over ssh' description: 'GitHub Action for deploying code via rsync over ssh'
author: 'Burnett01' author: 'Burnett01'
inputs: inputs:
swtiches: switches:
description: 'API method to use' description: 'The switches'
required: true required: true
rsh: rsh:
description: 'Github repository token' description: 'The remote shell argument'
required: true required: false
default: ''
path: path:
description: 'Repository owner. Default: Current repository owner' description: 'The local path'
upload_path: required: false
description: 'Repository name. Default: Current repository name' default: ''
remote_path:
description: 'The remote path'
required: true
remote_host:
description: 'The remote host'
required: true
remote_user:
description: 'The remote user'
required: true
remote_key:
description: 'The remote key'
required: true
runs: runs:
using: 'docker' using: 'docker'
image: 'Dockerfile' image: 'Dockerfile'