You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
deploy: // You can name your task however you like
|
|
stage: deploy
|
|
only:
|
|
- master
|
|
deploy:
|
|
script:
|
|
- lftp -c "set ftp:ssl-allow no; open -u $USERNAME,$PASSWORD $HOST; mirror -Rev ./ ./ --ignore-time --parallel=10 --exclude-glob .git* --exclude .git/" |