From 1b7a7a1999b4a570c6f5b6fdb417680ab7c0369a Mon Sep 17 00:00:00 2001 From: Matthew Kilgore Date: Sat, 23 Aug 2025 17:22:29 -0400 Subject: [PATCH] Fix YAML maybe --- .github/workflows/binaries-publish.yaml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.github/workflows/binaries-publish.yaml b/.github/workflows/binaries-publish.yaml index 29aa0be6..d78d9586 100644 --- a/.github/workflows/binaries-publish.yaml +++ b/.github/workflows/binaries-publish.yaml @@ -49,6 +49,18 @@ jobs: distribution: goreleaser version: "~> v2" args: release --clean --yes + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + COSIGN_PWD: ${{ secrets.COSIGN_PWD }} + + - name: Run GoReleaser Snapshot + 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 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} COSIGN_PWD: ${{ secrets.COSIGN_PWD }} \ No newline at end of file