phpvms/.travis/deploy_script.sh
2017-12-28 17:45:57 -06:00

36 lines
953 B
Bash
Executable File

#!/usr/bin/env bash
if [ "$TRAVIS" = "true" ]; then
if test "$TRAVIS_TAG"; then
PKG_NAME=$TRAVIS_TAG
else
PKG_NAME=master
fi
TAR_NAME="phpvms-7.0.0-$PKG_NAME.tar.gz"
echo "Writing $TAR_NAME"
# delete all superfluous files
echo "cleaning files"
cd $TRAVIS_BUILD_DIR
find ./vendor -type d -name ".git" | xargs rm -rf
rm -rf .idea phpvms.iml .travis .dpl
rm -rf .phpstorm.meta.php _ide_helper.php
rm -rf node_modules
# delete files in vendor that are rather large
rm -rf vendor/willdurand/geocoder/tests
php artisan version:show --format compact --suppress-app-name > VERSION
echo "creating tarball"
cd /tmp
tar -czf $TAR_NAME -C $TRAVIS_BUILD_DIR/../ phpvms phpvms/.*
#git archive --format=tar.gz --prefix=phpvms/ --output=test.tar.gz HEAD
echo "running rsync"
rsync -ahP --delete-after /tmp/$TAR_NAME downloads@phpvms.net:/var/www/downloads/
fi