From f86d38412b7e35bad74204b8ddb266b124cb34ce Mon Sep 17 00:00:00 2001 From: Matthew Kilgore Date: Sat, 23 Aug 2025 17:20:16 -0400 Subject: [PATCH] Fix YAML maybe --- .github/workflows/binaries-publish.yaml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/binaries-publish.yaml b/.github/workflows/binaries-publish.yaml index 4cced6c9..1c08c322 100644 --- a/.github/workflows/binaries-publish.yaml +++ b/.github/workflows/binaries-publish.yaml @@ -48,11 +48,10 @@ jobs: workdir: "backend" distribution: goreleaser version: "~> v2" - args: release --clean + args: release --clean --yes env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} COSIGN_PWD: ${{ secrets.COSIGN_PWD }} - COSIGN_YES: "true" - name: Run GoReleaser (No Publish) if: !startsWith(github.ref, 'refs/tags/') @@ -61,7 +60,7 @@ jobs: workdir: "backend" distribution: goreleaser version: "~> v2" - args: release --clean --skip=publish,validate + args: release --clean --skip=publish,validate --yes env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} COSIGN_PWD: ${{ secrets.COSIGN_PWD }}