From 75346b30558225da9fd85ff192aae127e9e285e1 Mon Sep 17 00:00:00 2001 From: Tanner Stirrat Date: Wed, 23 Oct 2024 14:46:51 -0600 Subject: [PATCH] Remove debug and add validation skip --- .github/workflows/release-windows.yaml | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/.github/workflows/release-windows.yaml b/.github/workflows/release-windows.yaml index e42e2e896e..6038213561 100644 --- a/.github/workflows/release-windows.yaml +++ b/.github/workflows/release-windows.yaml @@ -31,14 +31,12 @@ jobs: github_token: "${{ secrets.GITHUB_TOKEN }}" dockerhub_token: "${{ secrets.DOCKERHUB_ACCESS_TOKEN }}" - uses: "goreleaser/goreleaser-action@v6" - # TODO: remove this - continue-on-error: true with: distribution: "goreleaser-pro" # NOTE: keep in sync with goreleaser version in other job. # github actions don't allow yaml anchors. version: "v2.3.2" - args: "release --clean --verbose --config=.goreleaser.windows.yml" + args: "release --clean --skip=validate --config=.goreleaser.windows.yml" env: GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}" GORELEASER_KEY: "${{ secrets.GORELEASER_KEY }}" @@ -46,7 +44,3 @@ jobs: # TODO: remove these GORELEASER_CURRENT_TAG: "v1.37.0" GORELEASER_PREVIOUS_TAG: "v1.36.2" - - name: "Debug nuspec contents" - run: "cat dist/spicedb.choco/spicedb.nuspec" - - name: "Debug goreleaser contents" - run: "cat .goreleaser.windows.yml"