From 2858647a96c0255855211e27efde363a9fbbcac6 Mon Sep 17 00:00:00 2001 From: Christian Zunker <827818+czunker@users.noreply.github.com> Date: Thu, 12 Oct 2023 14:49:37 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=A7=B9=20Fix=20deprecated=20goreleaser=20?= =?UTF-8?q?flags=20(#830)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit https://goreleaser.com/deprecations/\#-skip Signed-off-by: Christian Zunker --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 574a31bf..374664d2 100644 --- a/Makefile +++ b/Makefile @@ -100,10 +100,10 @@ cnspec/install: GOBIN=${GOPATH}/bin go install ${LDFLAGSDIST} apps/cnspec/cnspec.go cnspec/dist/goreleaser/stable: - goreleaser release --clean --skip-publish --skip-validate -f .goreleaser.yml --timeout 120m + goreleaser release --clean --skip=validate,publish -f .goreleaser.yml --timeout 120m cnspec/dist/goreleaser/edge: - goreleaser release --clean --skip-publish --skip-validate -f .goreleaser.yml --timeout 120m --snapshot + goreleaser release --clean --skip=validate,publish -f .goreleaser.yml --timeout 120m --snapshot # ⛹🏽‍ Testing #