2018-10-18 08:15:04 +01:00
|
|
|
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
|
|
|
|
export TEXT=`git log -1 --pretty=%B`
|
|
|
|
export UPLOADTOOL_BODY="$TEXT\nTravis CI build log: https://travis-ci.com/$TRAVIS_REPO_SLUG/builds/$TRAVIS_BUILD_ID/"
|
|
|
|
|
2018-10-23 21:32:05 +01:00
|
|
|
wget https://github.com/probonopd/uploadtool/raw/master/upload.sh
|
2018-10-23 23:23:41 +01:00
|
|
|
bash upload.sh KittehPlayer*.AppImage*
|
2018-10-18 08:15:04 +01:00
|
|
|
echo "Done!"
|