From fb0e5ea1cef09f435fbe1785ec06dbdbf83a3370 Mon Sep 17 00:00:00 2001 From: Michele Degges Date: Mon, 20 Jun 2022 17:34:45 -0700 Subject: [PATCH] [CI-only] Notarize darwin arm (#2221) Currently, darwin arm binaries are not being notarized (called out by Louis!) This adds that in. --- .release/ci.hcl | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/.release/ci.hcl b/.release/ci.hcl index e1f3f934a9..4123458155 100644 --- a/.release/ci.hcl +++ b/.release/ci.hcl @@ -83,8 +83,21 @@ event "notarize-darwin-amd64" { } } -event "notarize-windows-386" { +event "notarize-darwin-arm64" { depends = ["notarize-darwin-amd64"] + action "notarize-darwin-arm64" { + organization = "hashicorp" + repository = "crt-workflows-common" + workflow = "notarize-darwin-arm64" + } + + notification { + on = "fail" + } +} + +event "notarize-windows-386" { + depends = ["notarize-darwin-arm64"] action "notarize-windows-386" { organization = "hashicorp" repository = "crt-workflows-common"