From ca2663562579a7094e1990c7cbeb48cb59ab1c85 Mon Sep 17 00:00:00 2001 From: Manuel Vogel Date: Wed, 21 Apr 2021 14:12:36 +0200 Subject: [PATCH] fix: skip sign on compile action --- .github/workflows/compile.yaml | 2 +- GNUmakefile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/compile.yaml b/.github/workflows/compile.yaml index b5da37c7..81850d5b 100644 --- a/.github/workflows/compile.yaml +++ b/.github/workflows/compile.yaml @@ -26,4 +26,4 @@ jobs: uses: goreleaser/goreleaser-action@v2 with: version: latest - args: release --rm-dist --skip-publish --snapshot + args: release --rm-dist --skip-publish --snapshot --skip-sign diff --git a/GNUmakefile b/GNUmakefile index 72aab413..e273b21e 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -34,7 +34,7 @@ testacc_cleanup: fmtcheck @sh -c "'$(CURDIR)/scripts/testacc_cleanup.sh'" compile: fmtcheck - @sh -c "curl -sL https://git.io/goreleaser | bash -s -- --rm-dist --skip-publish --snapshot" + @sh -c "curl -sL https://git.io/goreleaser | bash -s -- --rm-dist --skip-publish --snapshot --skip-sign" vet: @echo "go vet ."