ftp-action/entrypoint.sh

6 lines
199 B
Bash
Raw Normal View History

2019-09-04 22:29:00 +02:00
#!/bin/sh
set -e
2019-11-15 05:54:10 +01:00
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"