From 0e24f42baf1b2ba770b4f9eb9920a130cb9b6850 Mon Sep 17 00:00:00 2001 From: Ben Rockwood Date: Fri, 1 Nov 2024 12:06:28 -0700 Subject: [PATCH] Replace hardcoded cert alias for provider signing (#4762) Signed-off-by: Ben Rockwood --- scripts/provider_bundler.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/provider_bundler.sh b/scripts/provider_bundler.sh index c9d61f1e0c..631ef55c6c 100755 --- a/scripts/provider_bundler.sh +++ b/scripts/provider_bundler.sh @@ -68,7 +68,7 @@ build_bundle(){ if [[ "${GOOS}" == "windows" ]]; then ### SIGN THE BINARY echo " - Signing the binary ${PROVIDER_DIST}/${PROVIDER_EXECUTABLE}..." - jsign --storetype DIGICERTONE --alias "cert_492206180" \ + jsign --storetype DIGICERTONE --alias "${SM_CERT_ALIAS}" \ --storepass "${SM_API_KEY}|${SM_CLIENT_CERT_FILE}|${SM_CLIENT_CERT_PASSWORD}" \ --tsaurl "http://timestamp.digicert.com" ${PROVIDER_DIST}/${PROVIDER_EXECUTABLE} fi