talos/hack/release.sh
Andrew Rynhard 03a26f5836 chore: prepare release v0.3.0-alpha.5
This is the official v0.3.0-alpha.5 release.

Signed-off-by: Andrew Rynhard <andrew@andrewrynhard.com>
2019-10-31 15:35:41 -07:00

9 lines
161 B
Bash
Executable File

#!/bin/bash
if [ $# -ne 1 ]; then
echo 1>&2 "Usage: $0 <tag>"
exit 1
fi
git commit -s -m "chore: prepare release $1" -m "This is the official $1 release."