1
0
Files

28 lines
740 B
YAML
Raw Permalink Normal View History

2019-09-15 23:56:38 -05:00
name: 'FTP Deploy'
2019-10-08 00:26:19 -05:00
description: 'Syncs files via FTP/SFTP to a remote server'
2020-02-18 00:34:10 -06:00
author: 'Sam Kirkland'
2019-09-15 23:56:38 -05:00
inputs:
2020-02-18 00:34:10 -06:00
ftp-server:
description: 'Deployment destination server & path. Formatted as protocol://domain.com:port/full/destination/path/'
2019-09-15 23:56:38 -05:00
required: true
2020-02-18 00:34:10 -06:00
ftp-username:
2019-09-15 23:56:38 -05:00
description: 'FTP account username'
required: true
2020-02-18 00:34:10 -06:00
ftp-password:
2019-09-15 23:56:38 -05:00
description: 'FTP account password'
required: true
2020-02-18 00:34:10 -06:00
local-dir:
2019-09-15 23:56:38 -05:00
description: 'The local folder to copy, defaults to root project folder'
2020-05-05 00:58:08 -05:00
default: ./
2019-09-15 23:56:38 -05:00
required: false
2020-02-18 00:34:10 -06:00
git-ftp-args:
description: 'Passes through options into git-ftp'
2020-05-05 00:58:08 -05:00
default:
2019-09-15 23:56:38 -05:00
required: false
runs:
using: 'docker'
image: 'Dockerfile'
branding:
2020-02-18 00:34:10 -06:00
icon: 'upload-cloud'
2019-09-17 09:16:03 -05:00
color: 'orange'