mirror of
https://github.com/GenieTim/ftp-action.git
synced 2024-12-05 07:22:25 +08:00
13 lines
366 B
Bash
Executable File
13 lines
366 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -eu
|
|
|
|
echo "Starting FTP Deploy"
|
|
|
|
echo "Using $INPUT_USER to connect to $INPUT_HOST"
|
|
|
|
echo "Mirroring from $INPUT_LOCALDIR to $INPUT_REMOTEDIR"
|
|
|
|
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"
|
|
|
|
echo "FTP Deploy Complete" |