mirror of
https://github.com/sebastianpopp/ftp-action.git
synced 2025-12-05 11:44:51 +01:00
add action
This commit is contained in:
parent
37f3dddf43
commit
83bf24a942
3 changed files with 43 additions and 0 deletions
27
action.yml
Normal file
27
action.yml
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
name: 'FTP Action'
|
||||
description: 'Mirrors a directory with a FTP server.'
|
||||
author: 'Sebastian Popp <ftp-action@sebastianpopp.com>'
|
||||
inputs:
|
||||
host:
|
||||
description: 'FTP host'
|
||||
required: true
|
||||
user:
|
||||
description: 'FTP user'
|
||||
required: true
|
||||
password:
|
||||
description: 'FTP password'
|
||||
required: true
|
||||
localDir:
|
||||
description: 'Local directory'
|
||||
required: false
|
||||
default: '.'
|
||||
remoteDir:
|
||||
description: 'Remote directory'
|
||||
required: false
|
||||
default: '.'
|
||||
branding:
|
||||
color: 'blue'
|
||||
icon: 'upload'
|
||||
runs:
|
||||
using: 'docker'
|
||||
image: 'Dockerfile'
|
||||
Loading…
Add table
Add a link
Reference in a new issue