phpvms/.travis/deploy_script.sh

22 lines
545 B
Bash
Raw Normal View History

2017-12-14 07:03:59 +08:00
#!/usr/bin/env bash
if [ "$TRAVIS" = "true" ]; then
2017-12-14 07:03:59 +08:00
if test "$TRAVIS_TAG"; then
PKG_NAME=$TRAVIS_TAG
else
PKG_NAME=nightly
fi
echo "Writing $PKG_NAME.tar.gz"
2017-12-14 07:31:58 +08:00
# delete all superfluous files
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: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-15 00:42:27 +08:00
rsync -ahP --delete-after $PKG_NAME.tar.gz downloads@phpvms.net:/var/www/downloads/
rm -rf /tmp/out
fi