To upload files to the ftp server, use the following values. For public projects, see Gitlab documentation.
HOST: "your FTP host"
USERNAME: "your FTP username"
PASSWORD: "your FTP password"
To change the upload location, simply change the myfolderlocation
.
lftp -c "set ftp:ssl-allow no; open -u $USERNAME,$PASSWORD $HOST; mirror -Rnev ./ ./myfolderlocation
-e --delete-first --parallel=10 --exclude-glob .git* --exclude .sh --exclude .gitlab-ci.yml
--exclude /node_modules/*"