From 0ed284212305c76d65687aad6eaabf91142e0ddc Mon Sep 17 00:00:00 2001 From: Alex Goodman Date: Mon, 7 Feb 2022 18:47:47 -0500 Subject: [PATCH] serialize notarization (#806) Signed-off-by: Alex Goodman --- Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile b/Makefile index 9622b5086..f485749dc 100644 --- a/Makefile +++ b/Makefile @@ -316,9 +316,11 @@ release: clean-dist CHANGELOG.md ## Build and publish final binaries and packag rm -f .github/scripts/apple-signing/log/*.txt + # note: notarization cannot be done in parallel, thus --parallelism 1 bash -c "\ $(RELEASE_CMD) \ --config $(TEMPDIR)/goreleaser.yaml \ + --parallelism 1 \ --release-notes <(cat CHANGELOG.md)\ || cat .github/scripts/apple-signing/log/*.txt && false"