trilium/bin/release.sh

70 lines
1.3 KiB
Bash
Raw Normal View History

#!/usr/bin/env bash
if [[ $# -eq 0 ]] ; then
echo "Missing argument of new version"
exit 1
fi
VERSION=$1
if ! [[ ${VERSION} =~ ^[0-9]{1,2}\.[0-9]{1,2}\.[0-9]{1,2}(-.+)?$ ]] ;
then
echo "Version ${VERSION} isn't in format X.Y.Z"
exit 1
fi
if ! git diff-index --quiet HEAD --; then
echo "There are uncommitted changes"
exit 1
fi
2017-12-26 10:05:08 +08:00
echo "Releasing Trilium $VERSION"
2017-12-26 09:45:59 +08:00
jq '.version = "'$VERSION'"' package.json|sponge package.json
git add package.json
2017-12-26 10:05:08 +08:00
echo 'module.exports = { build_date:"'`date --iso-8601=seconds`'", build_revision: "'`git log -1 --format="%H"`'" };' > services/build.js
git add services/build.js
TAG=v$VERSION
2017-12-26 10:05:08 +08:00
echo "Committing package.json version change"
git commit -m "release $VERSION"
git push
2017-12-26 10:05:08 +08:00
echo "Tagging commit with $TAG"
git tag $TAG
git push origin $TAG
2017-12-26 10:05:08 +08:00
bin/build.sh
2017-12-26 10:05:08 +08:00
bin/package.sh
LINUX_BUILD=trilium-linux-$VERSION.7z
WINDOWS_BUILD=trilium-windows-$VERSION.7z
2017-12-26 10:05:08 +08:00
echo "Creating release in GitHub"
github-release release \
--tag $TAG \
--name "$TAG release"
2017-12-26 10:05:08 +08:00
echo "Uploading linux build"
github-release upload \
--tag $TAG \
--name "$LINUX_BUILD" \
--file "dist/$LINUX_BUILD"
2017-12-26 10:05:08 +08:00
echo "Uploading windows build"
github-release upload \
--tag $TAG \
--name "$WINDOWS_BUILD" \
2017-12-26 10:05:08 +08:00
--file "dist/$WINDOWS_BUILD"
echo "Release finished!"