Merge pull request #5 from ChrisDoernen/master

Add input parameter to enforce ssl encryption
This commit is contained in:
Sebastian Popp 2020-03-16 09:46:50 +01:00 committed by GitHub
commit ce7da30e09
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 7 additions and 1 deletions

View File

@ -19,6 +19,7 @@ jobs:
host: ${{ secrets.FTP_SERVER }}
user: ${{ secrets.FTP_USERNAME }}
password: ${{ secrets.FTP_PASSWORD }}
forceSsl: true
localDir: "dist"
remoteDir: "www"
```
@ -30,5 +31,6 @@ Input parameter | Description | Required | Default
host | FTP server name | Yes | N/A
user | FTP username | Yes | N/A
password | FTP password | Yes | N/A
forceSsl | Force SSL encryption | No | false
localDir | The local directory to copy | No | .
remoteDir | The remote directory to copy to | No | .

View File

@ -11,6 +11,10 @@ inputs:
password:
description: 'FTP password'
required: true
forceSsl:
description: 'Force SSL encryption'
required: false
default: 'false'
localDir:
description: 'Local directory'
required: false

View File

@ -1,3 +1,3 @@
#!/bin/sh -l
lftp $INPUT_HOST -u $INPUT_USER,$INPUT_PASSWORD -e "set ssl:verify-certificate false; mirror --reverse --continue --dereference -x ^\.git/$ $INPUT_LOCALDIR $INPUT_REMOTEDIR; quit"
lftp $INPUT_HOST -u $INPUT_USER,$INPUT_PASSWORD -e "set ftp:ssl-force $INPUT_FORCESSL; set ssl:verify-certificate false; mirror --reverse --continue --dereference -x ^\.git/$ $INPUT_LOCALDIR $INPUT_REMOTEDIR; quit"