mirror of
https://github.com/sebastianpopp/ftp-action.git
synced 2025-12-05 11:44:51 +01:00
Reverted automatically changed double quotes
This commit is contained in:
parent
1af5a261e3
commit
cdb2424bc9
1 changed files with 20 additions and 20 deletions
40
action.yml
40
action.yml
|
|
@ -1,39 +1,39 @@
|
|||
name: "ftp-action"
|
||||
author: "Sebastian Popp <ftp-action@sebastianpopp.com>"
|
||||
description: "Automate copying your files via FTP using this GitHub action."
|
||||
name: 'ftp-action'
|
||||
author: 'Sebastian Popp <ftp-action@sebastianpopp.com>'
|
||||
description: 'Automate copying your files via FTP using this GitHub action.'
|
||||
inputs:
|
||||
host:
|
||||
description: "FTP host"
|
||||
description: 'FTP host'
|
||||
required: true
|
||||
user:
|
||||
description: "FTP user"
|
||||
description: 'FTP user'
|
||||
required: true
|
||||
password:
|
||||
description: "FTP password"
|
||||
description: 'FTP password'
|
||||
required: true
|
||||
port:
|
||||
description: "FTP port"
|
||||
description: 'FTP port'
|
||||
required: false
|
||||
default: "21"
|
||||
default: '21'
|
||||
forceSsl:
|
||||
description: "Force SSL encryption"
|
||||
description: 'Force SSL encryption'
|
||||
required: false
|
||||
default: "false"
|
||||
default: 'false'
|
||||
localDir:
|
||||
description: "Local directory"
|
||||
description: 'Local directory'
|
||||
required: false
|
||||
default: "."
|
||||
default: '.'
|
||||
remoteDir:
|
||||
description: "Remote directory"
|
||||
description: 'Remote directory'
|
||||
required: false
|
||||
default: "."
|
||||
default: '.'
|
||||
options:
|
||||
description: "Additional mirror command options"
|
||||
description: 'Additional mirror command options'
|
||||
required: false
|
||||
default: ""
|
||||
default: ''
|
||||
runs:
|
||||
using: "docker"
|
||||
image: "Dockerfile"
|
||||
using: 'docker'
|
||||
image: 'Dockerfile'
|
||||
branding:
|
||||
color: "blue"
|
||||
icon: "upload-cloud"
|
||||
color: 'blue'
|
||||
icon: 'upload-cloud'
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue