* Add goreleaser for building binaries * Update CONTRIBUTING.md * Break release scripts for goreleaser Signed-off-by: Sanket Sudake <sanketsudake@gmail.com>
15 lines
209 B
Bash
Executable File
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 |