github.com/ahmet2mir/goreleaser@v0.180.3-0.20210927151101-8e5ee5a9b8c5/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  ```