1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2025-01-24 04:16:27 +02:00
goreleaser/www/docs/cookbooks/semantic-release.md

13 lines
288 B
Markdown
Raw Normal View History

# Semantic Release
GoReleaser does not create any tags, it just runs on what is already there.
You can, though, leverage other tools to do the work for you, like for example
[svu](https://github.com/caarlos0/svu):
```bash
git tag "$(svu next)"
git push --tags
goreleaser --rm-dist
```