From 4a95d67e3cee6eb33b0dc9f4febb9fad86c96ac8 Mon Sep 17 00:00:00 2001 From: probonopd Date: Thu, 9 Nov 2017 23:59:51 +0100 Subject: [PATCH] Suggest using uploadtool [ci skip] --- README.md | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 3bdaece..53a3cae 100644 --- a/README.md +++ b/README.md @@ -108,7 +108,14 @@ script: after_success: - find ./appdir -executable -type f -exec ldd {} \; | grep " => /usr" | cut -d " " -f 2-3 | sort | uniq - - curl --upload-file ./APPNAME*.AppImage https://transfer.sh/APPNAME-git.$(git rev-parse --short HEAD)-x86_64.AppImage + - # curl --upload-file ./APPNAME*.AppImage https://transfer.sh/APPNAME-git.$(git rev-parse --short HEAD)-x86_64.AppImage + - wget -c https://github.com/probonopd/uploadtool/raw/master/upload.sh + - bash upload.sh ./APPNAME*.AppImage* + +branches: + except: + - # Do not build tags that we create when we upload to GitHub Releases + - /^(?i:continuous)$/ ``` When you save your change, then Travis CI should build and upload an AppImage for you. More likely than not, some fine-tuning will still be required.