From e74353b48fe457ea6c319e76fb3f89a091d8cd9b Mon Sep 17 00:00:00 2001 From: Chris Marget Date: Sat, 30 Sep 2023 22:32:56 -0400 Subject: [PATCH] re-enable checks which were disabled for testing --- .goreleaser.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.goreleaser.yml b/.goreleaser.yml index a74b2e15..3cb8525e 100644 --- a/.goreleaser.yml +++ b/.goreleaser.yml @@ -6,8 +6,8 @@ # before: hooks: -# - sh -c "[ \"$(git branch --show-current)\" = \"main\" ] || (echo must be on branch main; false)" -# - sh -c "[ \"$(git pull)\" = \"Already up to date.\" ] || (echo not in sync with origin; false)" + - sh -c "[ \"$(git branch --show-current)\" = \"main\" ] || (echo must be on branch main; false)" + - sh -c "[ \"$(git pull)\" = \"Already up to date.\" ] || (echo not in sync with origin; false)" - go run github.com/chrismarget-j/go-licenses save --ignore github.com/Juniper/terraform-provider-apstra --ignore github.com/Juniper/apstra-go-sdk --save_path=./Third_Party_Code --force ./... - sh -c "go run github.com/chrismarget-j/go-licenses report ./... --ignore github.com/Juniper/terraform-provider-apstra --ignore github.com/Juniper/apstra-go-sdk/apstra --template .notices.tpl > Third_Party_Code/NOTICES.md" - go run github.com/hashicorp/terraform-plugin-docs/cmd/tfplugindocs