1
1
mirror of https://github.com/walles/moar.git synced 2024-08-16 15:30:34 +03:00
moar/release.sh
2022-09-25 08:40:40 +02:00

68 lines
1.8 KiB
Bash
Executable File

#!/bin/bash
set -e -o pipefail
echo "Running tests before making the release..."
./test.sh
# Bail if we're on a dirty version
if [ -n "$(git diff --stat)" ]; then
echo "ERROR: Please commit all changes before doing a release"
echo
git status
exit 1
fi
# List existing version numbers...
echo
echo "Previous version numbers:"
git tag | cat
# ... and ask for a new version number.
echo
echo "Please provide a version number on the form 'v1.2.3' for the new release:"
read -r VERSION
# https://github.com/walles/moar/issues/47
if ! echo "$VERSION" | grep -q -E '^v[0-9]+\.[0-9]+\.[0-9]+$'; then
echo "ERROR: Version number must be on the form: v1.2.3: $VERSION"
exit 1
fi
# List changes since last release as inspiration...
LAST_VERSION="$(git describe --abbrev=0)"
echo
# FIXME: Make this part of the editable tagging message
echo "Changes since last release:"
git log --first-parent --pretty="format:* %s" "$LAST_VERSION"..HEAD | sed 's/ diff.*//'
echo
echo
# Make an annotated tag for this release
git tag --annotate "$VERSION"
# NOTE: To get the version number right, these builds must be done after the
# above tagging.
#
# NOTE: Make sure this list matches the one in test.sh
GOOS=linux GOARCH=386 ./build.sh
GOOS=darwin GOARCH=amd64 ./build.sh
GOOS=windows GOARCH=amd64 ./build.sh
# Push the newly built release tag
git push --tags
# FIXME: Instead of asking the user to upload the binaries, upload them for
# the user.
echo
echo "Please upload the following binaries to <https://github.com/walles/moar/releases/tag/$VERSION>:"
file releases/moar-"$VERSION"-*-*
echo
echo "Also, update the brew packaging by making a PR to this file:"
echo "https://github.com/Homebrew/homebrew-core/blob/master/Formula/moar.rb"
echo
echo "brew bump-formula-pr --url=https://github.com/walles/moar/archive/refs/tags/$VERSION.tar.gz moar"