From 8e02da92992c44586c3e13cb621a4910f9796aa5 Mon Sep 17 00:00:00 2001 From: AC <155285242+sealad886@users.noreply.github.com> Date: Tue, 1 Sep 2026 13:16:35 +0100 Subject: [PATCH 1/2] docs(README): correct goreleaser URL Version 2 of goreleaser is indexed one folder deeper in the source repo. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 1fc1246..ba610a2 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,7 @@ This project uses [GoReleaser](https://goreleaser.com/) for automated builds and 1. Install GoReleaser: ```bash - go install github.com/goreleaser/goreleaser@v2.17.1 + go install github.com/goreleaser/goreleaser/v2@v2.17.1 ``` 2. Run a snapshot build (no publishing): From bb07d2ec7d896208f4c6b6dc10507022664d5def Mon Sep 17 00:00:00 2001 From: AC <155285242+sealad886@users.noreply.github.com> Date: Tue, 1 Sep 2026 13:27:19 +0100 Subject: [PATCH 2/2] docs: Update GoReleaser installation command in script Maintain consistency in help text for failed goreleaser execution --- build_locally.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build_locally.sh b/build_locally.sh index 11ad0dd..b42eb5f 100755 --- a/build_locally.sh +++ b/build_locally.sh @@ -12,7 +12,7 @@ echo "" # Check if goreleaser is installed if ! command -v goreleaser &> /dev/null; then echo "GoReleaser is not installed." - echo "Install it with: go install github.com/goreleaser/goreleaser@v2.17.1" + echo "Install it with: go install github.com/goreleaser/goreleaser/v2@v2.17.1" echo "Or see: https://goreleaser.com/install/" exit 1 fi