Files
fission-src/hack/release-tag.sh
Sanket SudakeandGitHub 1347d73b04 fix: Goreleaser for build and release (#2189)
* Add goreleaser for building binaries
* Update CONTRIBUTING.md
* Break release scripts for goreleaser

Signed-off-by: Sanket Sudake <sanketsudake@gmail.com>
2021-09-21 15:29:40 +05:30

15 lines
209 B
Bash
Executable File

doit() {
echo "! $*"
"$@"
}
version=$1
if [ -z $version ]; then
echo "Release version not mentioned"
exit 1
fi
# tag the release
doit git tag $version
# push tag
doit git push origin $version