1
0
mirror of https://github.com/qTox/qTox.git synced 2024-03-22 14:00:36 +08:00

chore(deploy): add sha256sum for linux deployments

This commit is contained in:
sudden6 2019-01-18 14:54:11 +01:00
parent af58f614d1
commit 4e997b71de
No known key found for this signature in database
GPG Key ID: 279509B499E032B9
2 changed files with 6 additions and 2 deletions

View File

@ -66,5 +66,7 @@ fi
# use the version number in the name when building a tag on Travis CI # use the version number in the name when building a tag on Travis CI
if [ -n "$TRAVIS_TAG" ] if [ -n "$TRAVIS_TAG" ]
then 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 fi

View File

@ -48,5 +48,7 @@ fi
# use the version number in the name when building a tag on Travis CI # use the version number in the name when building a tag on Travis CI
if [ -n "$TRAVIS_TAG" ] if [ -n "$TRAVIS_TAG" ]
then 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 fi