From 5a29351aa345381e8ee369ed5b49f3921a49f956 Mon Sep 17 00:00:00 2001 From: Milen Dyankov Date: Tue, 29 Jul 2025 18:39:51 +0200 Subject: [PATCH 1/3] Update install instructions for goreleaser --- CONTRIBUTING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 73ece76..235939b 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -9,7 +9,7 @@ 2. Install goreleaser ``` -brew install goreleaser/tap/goreleaser +brew install --cask goreleaser ``` 3. Build the CLI From 75521851816b042b956eece43e069dec1ed77653 Mon Sep 17 00:00:00 2001 From: Milen Dyankov Date: Tue, 29 Jul 2025 19:05:00 +0200 Subject: [PATCH 2/3] Fix deprecated format --- .goreleaser.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.goreleaser.yaml b/.goreleaser.yaml index 8cfb152..00ae01e 100644 --- a/.goreleaser.yaml +++ b/.goreleaser.yaml @@ -30,7 +30,7 @@ universal_binaries: - replace: true archives: - - format: tar.gz + - formats: ["tar.gz"] # this name template makes the OS and Arch compatible with the results of `uname`. name_template: >- {{ .ProjectName }}_ @@ -42,7 +42,7 @@ archives: # use zip for windows archives format_overrides: - goos: windows - format: zip + formats: ["zip"] report_sizes: true From 53d584487f6f90e35548644e5ace54396c566dc5 Mon Sep 17 00:00:00 2001 From: Milen Dyankov Date: Fri, 19 Sep 2025 12:03:06 +0200 Subject: [PATCH 3/3] Update `goreleaser` install command --- CONTRIBUTING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 235939b..d7494d5 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -9,7 +9,7 @@ 2. Install goreleaser ``` -brew install --cask goreleaser +brew install --cask goreleaser/tap/goreleaser ``` 3. Build the CLI