Skip to content

Commit

Permalink
Allow updating existing release
Browse files Browse the repository at this point in the history
  • Loading branch information
raxod502 committed Sep 14, 2022
1 parent 14aa6f3 commit 3197234
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,6 @@ releasenotes: version
release:
@echo "Releasing version $(VERSION)"
@$(RELEASE_NOTES) > .releasenotes.tmp.md
git tag v$(VERSION) HEAD
git push origin v$(VERSION)
git tag v$(VERSION) HEAD $(if $(FORCE),-f,)
git push origin v$(VERSION) $(if $(FORCE),-f,)
goreleaser release --rm-dist --release-notes=.releasenotes.tmp.md

0 comments on commit 3197234

Please sign in to comment.