Commit 1c71bd78f1e6532fedd233762300a2d3a1dc16d0

Authored by Jay Berkenbilt
1 parent 78998a8c

Don't automatically upload releases from Travis CI

I'm managing my releases on github in a different way, and I don't
want to put a github token in Travis CI right now. I may revisit this
in the future.
Showing 1 changed file with 4 additions and 3 deletions
.travis.yml
@@ -13,8 +13,9 @@ script: @@ -13,8 +13,9 @@ script:
13 after_success: 13 after_success:
14 - cd appimage/build 14 - cd appimage/build
15 - find ./appdir -executable -type f -exec ldd {} \; | grep " => /usr" | cut -d " " -f 2-3 | sort | uniq 15 - find ./appdir -executable -type f -exec ldd {} \; | grep " => /usr" | cut -d " " -f 2-3 | sort | uniq
16 - - ls -l # for more debugging in Travis' log 16 + - ls -l # for more debugging in Travis' log
17 - curl --upload-file ./qpdf*.AppImage https://transfer.sh/qpdf-git.$(git rev-parse --short HEAD)-x86_64.AppImage 17 - curl --upload-file ./qpdf*.AppImage https://transfer.sh/qpdf-git.$(git rev-parse --short HEAD)-x86_64.AppImage
18 - sha512sum ./qpdf*.AppImage* 18 - sha512sum ./qpdf*.AppImage*
19 - - wget -c https://github.com/probonopd/uploadtool/raw/master/upload.sh  
20 - - bash upload.sh qpdf-*x86_64.AppImage* # This should upload the .zsync file as well 19 +# Not ready to have travis automatically create github releases
  20 +# - wget -c https://github.com/probonopd/uploadtool/raw/master/upload.sh
  21 +# - bash upload.sh qpdf-*x86_64.AppImage* # This should upload the .zsync file as well