From 62ed3fabc20184544883d3520cf79d97b6732b8d Mon Sep 17 00:00:00 2001 From: Matthew Kilgore Date: Sat, 23 Aug 2025 17:29:21 -0400 Subject: [PATCH] Fix broken test version of binary build --- .github/workflows/binaries-publish.yaml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/.github/workflows/binaries-publish.yaml b/.github/workflows/binaries-publish.yaml index b0b11323..550cd6fe 100644 --- a/.github/workflows/binaries-publish.yaml +++ b/.github/workflows/binaries-publish.yaml @@ -48,19 +48,21 @@ jobs: workdir: "backend" distribution: goreleaser version: "~> v2" - args: release --clean --yes + args: release --clean env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} COSIGN_PWD: ${{ secrets.COSIGN_PWD }} + COSIGN_YES: "true" - - name: Run GoReleaser Snapshot + - name: Run GoReleaser No Release if: ${{ !startsWith(github.ref, 'refs/tags/') }} uses: goreleaser/goreleaser-action@v5 with: workdir: "backend" distribution: goreleaser version: "~> v2" - args: release --clean --yes --snapshot --skip=publish + args: release --clean --snapshot --skip=publish env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - COSIGN_PWD: ${{ secrets.COSIGN_PWD }} \ No newline at end of file + COSIGN_PWD: ${{ secrets.COSIGN_PWD }} + COSIGN_YES: "true" \ No newline at end of file