mirror of
https://github.com/SamKirkland/FTP-Deploy-Action.git
synced 2025-08-14 14:05:05 +00:00
31 lines
844 B
YAML
31 lines
844 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
|
|
known-hosts:
|
|
description: The desired content of your `.ssh/known_hosts` file
|
|
required: false
|
|
runs:
|
|
using: 'docker'
|
|
image: 'Dockerfile'
|
|
branding:
|
|
icon: 'upload-cloud'
|
|
color: 'orange'
|