mirror of
https://github.com/taigrr/gitomatic.git
synced 2026-04-02 03:09:10 -07:00
Added release helper script
This commit is contained in:
30
tools/release.sh
Executable file
30
tools/release.sh
Executable file
@@ -0,0 +1,30 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
if ! command -v goreleaser; then
|
||||||
|
echo "goreleaser not found"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Get the highest tag number
|
||||||
|
VERSION="$(git describe --abbrev=0 --tags)"
|
||||||
|
VERSION=${VERSION:-'0.0.0'}
|
||||||
|
|
||||||
|
# Get number parts
|
||||||
|
MAJOR="${VERSION%%.*}"; VERSION="${VERSION#*.}"
|
||||||
|
MINOR="${VERSION%%.*}"; VERSION="${VERSION#*.}"
|
||||||
|
PATCH="${VERSION%%.*}"; VERSION="${VERSION#*.}"
|
||||||
|
|
||||||
|
# Increase version
|
||||||
|
PATCH=$((PATCH+1))
|
||||||
|
|
||||||
|
TAG="${1}"
|
||||||
|
|
||||||
|
if [ "${TAG}" = "" ]; then
|
||||||
|
TAG="${MAJOR}.${MINOR}.${PATCH}"
|
||||||
|
fi
|
||||||
|
|
||||||
|
echo "Releasing ${TAG} ..."
|
||||||
|
|
||||||
|
git tag -a -s -m "Release ${TAG}" "${TAG}"
|
||||||
|
git push --tags
|
||||||
|
goreleaser release --rm-dist
|
||||||
Reference in New Issue
Block a user