Since v1.12.0-pro, GoReleaser can split and merge its release process. This means that you can run the builds for each platform in its own machine, and then merge the results and publish later. This can be useful if you need CGO, or if your build process takes too long. In this post we’ll set up an example using GitHub Actions and a sample project. GoReleaser config By default, GoReleaser will split by GOOS, so, if you run goreleaser release --split in a Linux machine, it’ll build all tar...