2017-12-14 07:03:59 +08:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
2017-12-14 07:38:12 +08:00
|
|
|
if [ "$TRAVIS" = "true" ]; then
|
2017-12-14 07:03:59 +08:00
|
|
|
|
2017-12-14 07:38:12 +08:00
|
|
|
if test "$TRAVIS_TAG"; then
|
|
|
|
PKG_NAME=$TRAVIS_TAG
|
|
|
|
else
|
|
|
|
PKG_NAME=nightly
|
|
|
|
fi
|
2017-12-14 07:25:14 +08:00
|
|
|
|
2017-12-14 07:38:12 +08:00
|
|
|
echo "Writing $PKG_NAME.tar.gz"
|
2017-12-14 07:31:58 +08:00
|
|
|
|
|
|
|
# delete all superfluous files
|
2017-12-14 07:25:14 +08:00
|
|
|
rm -rf .git deploy_rsa.enc .idea phpvms.iml .travis .dpl
|
2017-12-14 07:31:58 +08:00
|
|
|
find . -type d -name ".git" | xargs rm -rf
|
2017-12-14 07:25:14 +08:00
|
|
|
|
2017-12-14 07:31:58 +08:00
|
|
|
# tar and upload
|
2017-12-14 22:05:59 +08:00
|
|
|
tar -czf phpvms-7.0.0-$PKG_NAME.tar.gz -C $TRAVIS_BUILD_DIR/../ phpvms
|
2017-12-14 07:25:14 +08:00
|
|
|
rsync -r --delete-after --quiet $PKG_NAME.tar.gz downloads@phpvms.net:/var/www/downloads/
|
2017-12-14 07:38:12 +08:00
|
|
|
rm -rf /tmp/out
|
2017-12-14 07:25:14 +08:00
|
|
|
fi
|