mirror of
https://github.com/goreleaser/goreleaser.git
synced 2025-01-10 03:47:03 +02:00
176336f264
* Make sure to do required go mod init before continuing or goreleaser command fails. * how the release might look like -> what the release might look like * How does it look like -> What does it look like * you must therefore -> you must * Don't use GO111MODULES in example since it's so obsolete * modules -> verifiable builds * got you covered -> has you covered
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 has you covered!
|
|
|
|
All you need is to add `skip: true` to the build config:
|
|
|
|
```yaml
|
|
builds:
|
|
- skip: true
|
|
```
|