mirror of
https://github.com/goreleaser/goreleaser.git
synced 2025-01-24 04:16:27 +02:00
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
|
||
|
```
|