mirror of
https://github.com/sebastianpopp/ftp-action.git
synced 2024-12-22 18:59:49 +01:00
Feature/add additional opts (#17)
* Update entrypoint.sh * Update action.yml * Update README.md * Update entrypoint.sh * pass through additional mirror options * restore meta-data
This commit is contained in:
parent
eb75c5cb29
commit
ca3f8d253d
3 changed files with 7 additions and 1 deletions
|
@ -21,6 +21,7 @@ jobs:
|
||||||
password: ${{ secrets.FTP_PASSWORD }}
|
password: ${{ secrets.FTP_PASSWORD }}
|
||||||
localDir: "dist"
|
localDir: "dist"
|
||||||
remoteDir: "www"
|
remoteDir: "www"
|
||||||
|
options: "--delete --asci"
|
||||||
```
|
```
|
||||||
|
|
||||||
## Input parameters
|
## Input parameters
|
||||||
|
@ -33,3 +34,4 @@ password | FTP password | Yes | N/A
|
||||||
localDir | The local directory to copy | No | .
|
localDir | The local directory to copy | No | .
|
||||||
remoteDir | The remote directory to copy to | No | .
|
remoteDir | The remote directory to copy to | No | .
|
||||||
forceSsl | Force SSL encryption | No | false
|
forceSsl | Force SSL encryption | No | false
|
||||||
|
options | Mirror command options | No | ''
|
||||||
|
|
|
@ -23,6 +23,10 @@ inputs:
|
||||||
description: 'Remote directory'
|
description: 'Remote directory'
|
||||||
required: false
|
required: false
|
||||||
default: '.'
|
default: '.'
|
||||||
|
options:
|
||||||
|
description: 'Additional mirror command options'
|
||||||
|
required: false
|
||||||
|
default: ''
|
||||||
runs:
|
runs:
|
||||||
using: 'docker'
|
using: 'docker'
|
||||||
image: 'Dockerfile'
|
image: 'Dockerfile'
|
||||||
|
|
|
@ -1,3 +1,3 @@
|
||||||
#!/bin/sh -l
|
#!/bin/sh -l
|
||||||
|
|
||||||
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"
|
lftp $INPUT_HOST -u $INPUT_USER,$INPUT_PASSWORD -e "set ftp:ssl-force $INPUT_FORCESSL; set ssl:verify-certificate false; mirror $INPUT_OPTIONS --reverse --continue --dereference -x ^\.git/$ $INPUT_LOCALDIR $INPUT_REMOTEDIR; quit"
|
||||||
|
|
Loading…
Reference in a new issue