From ba7344b9631e343d9d70e9b0ea5f34a890c973e3 Mon Sep 17 00:00:00 2001 From: Vaibhav Kamra Date: Wed, 26 Oct 2022 22:43:27 -0700 Subject: [PATCH] Do not add README to the released archives (#1337) ## Description Overrides default goreleaser behavior and skips adding any files to the archive other than the binary See https://goreleaser.com/customization/archive/#packaging-only-the-binaries ## Type of change - [ ] :sunflower: Feature - [ ] :bug: Bugfix - [ ] :world_map: Documentation - [ ] :robot: Test - [ ] :computer: CI/Deployment - [x] :hamster: Trivial/Minor --- src/.goreleaser.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/.goreleaser.yaml b/src/.goreleaser.yaml index 19a49a79b..f72250770 100644 --- a/src/.goreleaser.yaml +++ b/src/.goreleaser.yaml @@ -28,6 +28,8 @@ archives: format_overrides: - goos: windows format: zip + files: + - none* checksum: name_template: 'checksums.txt'