Browse Source

chore(deploy): add sha256sum for linux deployments

reviewable/pr5502/r2
sudden6 7 years ago
parent
commit
4e997b71de
No known key found for this signature in database
GPG Key ID: 279509B499E032B9
  1. 4
      appimage/build-appimage.sh
  2. 4
      flatpak/build-flatpak.sh

4
appimage/build-appimage.sh

@ -66,5 +66,7 @@ fi @@ -66,5 +66,7 @@ fi
# use the version number in the name when building a tag on Travis CI
if [ -n "$TRAVIS_TAG" ]
then
mv ./output/*.AppImage ./output/qTox-"$TRAVIS_TAG".x86_64.AppImage
readonly OUTFILE=./output/qTox-"$TRAVIS_TAG".x86_64.AppImage
mv ./output/*.AppImage "$OUTFILE"
sha256sum "$OUTFILE" > "$OUTFILE".sha256
fi

4
flatpak/build-flatpak.sh

@ -48,5 +48,7 @@ fi @@ -48,5 +48,7 @@ fi
# use the version number in the name when building a tag on Travis CI
if [ -n "$TRAVIS_TAG" ]
then
mv ./output/*.flatpak ./output/qTox-"$TRAVIS_TAG".x86_64.flatpak
readonly OUTFILE=./output/qTox-"$TRAVIS_TAG".x86_64.flatpak
mv ./output/*.flatpak "$OUTFILE"
sha256sum "$OUTFILE" > "$OUTFILE".sha256
fi

Loading…
Cancel
Save