FTP-Deploy-Action/action.yml
SamKirkland 4895f6f251 v3.0.0
Complete rewrite!
Switched from LFTP to git-ftp
Upload diffs based on git history by default
lower case kebab argument names
Migrated from shell to typescript
Added FTP and SFTP tests
.git-ftp-ignore and .git-ftp-include support
2020-02-18 00:34:10 -06:00

28 lines
742 B
YAML

name: 'FTP Deploy'
description: 'Syncs files via FTP/SFTP to a remote server'
author: 'Sam Kirkland'
inputs:
ftp-server:
description: 'Deployment destination server & path. Formatted as protocol://domain.com:port/full/destination/path/'
required: true
ftp-username:
description: 'FTP account username'
required: true
ftp-password:
description: 'FTP account password'
required: true
local-dir:
description: 'The local folder to copy, defaults to root project folder'
defaults: ./
required: false
git-ftp-args:
description: 'Passes through options into git-ftp'
defaults:
required: false
runs:
using: 'docker'
image: 'Dockerfile'
branding:
icon: 'upload-cloud'
color: 'orange'