From 1fd2e6677ffecf33ffad53b19a9310daaaa3c4b0 Mon Sep 17 00:00:00 2001 From: Ashish Bhatia Date: Sun, 30 Jun 2024 14:42:56 -0700 Subject: [PATCH] chore: release `--debug` from `goreleaser` MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit It seems it no longer recognized Ref: https://github.com/ashishb/wp2hugo/actions/runs/9735144099/job/26864012080 ``` /opt/hostedtoolcache/goreleaser-action/2.0.1/x64/goreleaser release --clean --debug тип command failed error=unknown flag: --debug Error: The process '/opt/hostedtoolcache/goreleaser-action/2.0.1/x64/goreleaser' failed with exit code 1 ``` --- .github/workflows/release-binary.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release-binary.yaml b/.github/workflows/release-binary.yaml index dbdf44e..d8ce04c 100644 --- a/.github/workflows/release-binary.yaml +++ b/.github/workflows/release-binary.yaml @@ -77,6 +77,6 @@ jobs: with: distribution: goreleaser version: latest - args: release --clean --debug + args: release --clean env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}