mirror of
https://github.com/sebastianpopp/ftp-action.git
synced 2025-12-05 03:34:50 +01:00
Compare commits
No commits in common. "master" and "v2.0.0" have entirely different histories.
3 changed files with 1 additions and 7 deletions
|
|
@ -21,7 +21,6 @@ jobs:
|
|||
password: ${{ secrets.FTP_PASSWORD }}
|
||||
localDir: "dist"
|
||||
remoteDir: "www"
|
||||
options: "--delete --asci"
|
||||
```
|
||||
|
||||
## Input parameters
|
||||
|
|
@ -34,4 +33,3 @@ password | FTP password | Yes | N/A
|
|||
localDir | The local directory to copy | No | .
|
||||
remoteDir | The remote directory to copy to | No | .
|
||||
forceSsl | Force SSL encryption | No | false
|
||||
options | Mirror command options | No | ''
|
||||
|
|
|
|||
|
|
@ -23,10 +23,6 @@ inputs:
|
|||
description: 'Remote directory'
|
||||
required: false
|
||||
default: '.'
|
||||
options:
|
||||
description: 'Additional mirror command options'
|
||||
required: false
|
||||
default: ''
|
||||
runs:
|
||||
using: 'docker'
|
||||
image: 'Dockerfile'
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
#!/bin/sh -l
|
||||
|
||||
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"
|
||||
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"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue