mirror of
https://github.com/goreleaser/goreleaser.git
synced 2025-01-10 03:47:03 +02:00
41f6d9ba93
Signed-off-by: Carlos Alexandro Becker <caarlos0@gmail.com>
13 lines
288 B
Markdown
13 lines
288 B
Markdown
# 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
|
|
```
|