FTP-Deploy-Action/action.yml
SamKirkland f68449776c v3.1.0
Official release of known-hosts
2020-05-05 00:58:08 -05:00

28 lines
740 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'
default: ./
required: false
git-ftp-args:
description: 'Passes through options into git-ftp'
default:
required: false
runs:
using: 'docker'
image: 'Dockerfile'
branding:
icon: 'upload-cloud'
color: 'orange'