From 3c3762f1834b3b23317c8ddecf78068f34ded649 Mon Sep 17 00:00:00 2001 From: Arkadiy Kukarkin Date: Thu, 25 Jul 2024 17:12:01 +0200 Subject: [PATCH] Pin goreleaser to latest 1.X goreleaser 2.x has changed the configuration format, which breaks tagged package releases this workaround pins goreleaser to latest 1.x release --- .github/workflows/release-binaries.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release-binaries.yml b/.github/workflows/release-binaries.yml index 044a5005..04dd119f 100644 --- a/.github/workflows/release-binaries.yml +++ b/.github/workflows/release-binaries.yml @@ -23,7 +23,7 @@ jobs: uses: goreleaser/goreleaser-action@v4 with: distribution: goreleaser - version: latest + version: v2.1.0 args: ${{ github.event_name == 'pull_request' && 'release --snapshot --skip-publish' || 'release --clean' }} env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}