redis/scripts/tag.sh

43 lines
684 B
Bash
Raw Normal View History

2021-08-11 17:14:46 +03:00
#!/bin/bash
set -e
help() {
cat <<- EOF
Usage: TAG=tag $0
Creates git tags for public Go packages.
VARIABLES:
TAG git tag, for example, v1.0.0
EOF
exit 0
}
if [ -z "$TAG" ]
then
printf "TAG env var is required\n\n";
help
fi
if ! grep -Fq "\"${TAG#v}\"" version.go
then
printf "version.go does not contain ${TAG#v}\n"
exit 1
fi
PACKAGE_DIRS=$(find . -mindepth 2 -type f -name 'go.mod' -exec dirname {} \; \
| grep -E -v "example|internal" \
| sed 's/^\.\///' \
| sort)
2021-08-30 17:18:31 +03:00
git tag ${TAG}
2021-09-01 15:30:36 +03:00
git push origin ${TAG}
2021-08-11 17:14:46 +03:00
for dir in $PACKAGE_DIRS
do
printf "tagging ${dir}/${TAG}\n"
2021-08-12 15:43:44 +03:00
git tag ${dir}/${TAG}
2021-09-01 15:30:36 +03:00
git push origin ${dir}/${TAG}
2021-08-11 17:14:46 +03:00
done