Revision #136 has been created by rackycz on Oct 4, 2019, 2:55:12 PM with the memo:
git auto upload
« previous (#135) next (#137) »
Changes
Title
unchanged
Yii v2 snippet guide
Category
unchanged
Tutorials
Yii version
unchanged
2.0
Tags
unchanged
tutorial,beginner,yii2
Content
changed
[...]
```
variables:
HOST: "url.to.my.ftp"
USERNAME: "username"
PASSWORD: "password"
FOLDER: "relative path if needed or just ./"
deploy:
script:
- apt-get update -qq && apt-get install -y -qq lftp
- lftp -c "set ftp:ssl-allow no; open -u $USERNAME,$PASSWORD $HOST; mirror -Rnev ./ $FOLDER --ignore-time --parallel=10 --exclude-glob .git* --exclude .git/" --exclude vendor[...]