github.com/joselitofilho/goreleaser@v0.155.1-0.20210123221854-e4891856c593/www/docs/cookbooks/semantic-release.md (about) 1 # Semantic Release 2 3 GoReleaser does not create any tags, it just runs on what is already there. 4 5 You can, though, leverage other tools to do the work for you, like for example 6 [svu](https://github.com/caarlos0/svu): 7 8 ```bash 9 git tag "$(svu next)" 10 git push --tags 11 goreleaser --rm-dist 12 ```