github.com/goreleaser/goreleaser@v1.25.1/www/docs/customization/reportsizes.md (about) 1 # Report Sizes 2 3 > Since v1.18 4 5 You might want to enable this if you want to keep an eye on your binary/package 6 sizes. 7 8 It'll report the size of each artifact of the following types to the build 9 output, as well as on `dist/artifacts.json`: 10 11 - `Binary` 12 - `UniversalBinary` 13 - `UploadableArchive` 14 - `PublishableSnapcraft` 15 - `LinuxPackage` 16 - `CArchive` 17 - `CShared` 18 - `Header` 19 20 Here's the available configuration options: 21 22 ```yaml 23 # .goreleaser.yaml 24 # Whether to enable the size reporting or not. 25 report_sizes: true 26 ```