mirror of
https://github.com/sebastianpopp/ftp-action.git
synced 2025-12-05 11:44:51 +01:00
Add input parameter to enforce ssl encryption
This commit is contained in:
parent
60e94deadd
commit
acf64d3524
3 changed files with 7 additions and 1 deletions
|
|
@ -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 | .
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue