GitHub Action: GoReleaser - How to configure it for a library package release?

354 Views Asked by At

I have several github repositories containing go packages that are libraries rather than binary executables. How can I configure GoReleaser in my GitHub Actions release script so it generates the release but doesn't try to build and publish binaries?

I found a reference in the documentation, but it was for using goreleaser as a CLI.

Thanks for your help! Mike

1

There are 1 best solutions below

0
On

add this to your .goreleaser.yml:

builds:
  - skip: true