mirror of
https://github.com/goreleaser/goreleaser.git
synced 2025-01-24 04:16:27 +02:00
f3c54f0904
Signed-off-by: Carlos Alexandro Becker <caarlos0@gmail.com>
11 lines
257 B
Markdown
11 lines
257 B
Markdown
# Release a library
|
|
|
|
Maybe you don't want to actually release binaries, but just generate a changelog and whatnot for your Go libraries? GoReleaser got you covered!
|
|
|
|
All you need is to add `skip: true` to the build config:
|
|
|
|
```yaml
|
|
builds:
|
|
- skip: true
|
|
```
|