Skip to content

Commit

Permalink
adds publish command to Makefile
Browse files Browse the repository at this point in the history
for kicking off the release process
  • Loading branch information
mhausenblas committed Nov 27, 2019
1 parent c5bee36 commit 60d655b
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
release_version:= v0.1.1

export GO111MODULE=on

Expand All @@ -21,3 +22,7 @@ vet:
release:
curl -sL https://git.io/goreleaser | bash -s -- --rm-dist --config .goreleaser.yml

.PHONY: publish
publish:
git tag ${release_version}
git push --tags

0 comments on commit 60d655b

Please sign in to comment.