Skip to content

Commit

Permalink
Switch from transfer.sh to file.io
Browse files Browse the repository at this point in the history
Reliability problems with transfer.sh, and it's blocked inside some corporate networks
  • Loading branch information
docsteer committed Feb 13, 2019
1 parent 2e78bee commit 545edcf
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,10 @@ matrix:
- make -j$(nproc)
after_success:
- FILE=$(readlink -f install/linux/sACNView_*AppImage)
- curl --upload-file $FILE https://transfer.sh/$(basename $FILE)
- BASENAME=$(basename $FILE)
- echo "Uploading $BASENAME to file.io..." && curl -sF "file=@$FILE" https://file.io | xargs printf "$BASENAME uploaded - %s\n"
- FILE=$(readlink -f install/linux/sacnview_*.deb)
- curl --upload-file $FILE https://transfer.sh/$(basename $FILE)
- echo "Uploading $BASENAME to file.io..." && curl -sF "file=@$FILE" https://file.io | xargs printf "$BASENAME uploaded - %s\n"

- os: osx
osx_image: xcode8.3
Expand All @@ -51,4 +52,5 @@ matrix:
- make -j4
after_success:
- FILE=$(echo `pwd`/`ls install/mac/sACNView*.dmg`)
- curl --upload-file $FILE https://transfer.sh/$(basename $FILE)
- BASENAME=$(basename $FILE)
- echo "Uploading $BASENAME to file.io..." && curl -sF "file=@$FILE" https://file.io | xargs printf "$BASENAME uploaded - %s\n"

0 comments on commit 545edcf

Please sign in to comment.