1
0
Files
ftp-deploy-action/entrypoint.sh
T

17 lines
430 B
Bash
Raw Permalink Normal View History

2019-01-05 00:48:18 -06:00
#!/bin/sh
# "to avoid continuing when errors or undefined variables are present"
set -eu
echo "Starting FTP Deploy"
echo "Uploading files..."
WDEFAULT_LOCAL_DIR=${LOCAL_DIR:-"."}
WDEFAULT_REMOTE_DIR=${REMOTE_DIR:-"."}
2019-09-17 09:00:42 +02:00
WDEFAULT_ARGS=${ARGS:-""}
2019-01-05 00:48:18 -06:00
2019-09-16 10:44:36 -05:00
lftp $FTP_SERVER -u $FTP_USERNAME,$FTP_PASSWORD -e "set ftp:ssl-allow no; mirror $WDEFAULT_ARGS -R $WDEFAULT_LOCAL_DIR $WDEFAULT_REMOTE_DIR; quit"
2019-01-05 00:48:18 -06:00
echo "FTP Deploy Complete"
2019-09-16 10:44:36 -05:00
exit 0