2019-11-17 01:45:24 +08:00
|
|
|
name: 'ftp-action'
|
2019-09-05 04:29:00 +08:00
|
|
|
author: 'Sebastian Popp <ftp-action@sebastianpopp.com>'
|
2019-11-17 01:45:24 +08:00
|
|
|
description: 'Automate copying your files via FTP using this GitHub action.'
|
2019-09-05 04:29:00 +08:00
|
|
|
inputs:
|
|
|
|
host:
|
|
|
|
description: 'FTP host'
|
|
|
|
required: true
|
|
|
|
user:
|
|
|
|
description: 'FTP user'
|
|
|
|
required: true
|
|
|
|
password:
|
|
|
|
description: 'FTP password'
|
|
|
|
required: true
|
2020-03-06 04:34:50 +08:00
|
|
|
forceSsl:
|
|
|
|
description: 'Force SSL encryption'
|
|
|
|
required: false
|
2020-03-10 03:07:47 +08:00
|
|
|
default: 'false'
|
2019-09-05 04:29:00 +08:00
|
|
|
localDir:
|
|
|
|
description: 'Local directory'
|
|
|
|
required: false
|
|
|
|
default: '.'
|
|
|
|
remoteDir:
|
|
|
|
description: 'Remote directory'
|
|
|
|
required: false
|
|
|
|
default: '.'
|
|
|
|
runs:
|
|
|
|
using: 'docker'
|
|
|
|
image: 'Dockerfile'
|
2019-11-17 01:45:24 +08:00
|
|
|
branding:
|
|
|
|
color: 'blue'
|
|
|
|
icon: 'upload-cloud'
|