From 0e95da26b4531b30254d07e80a86d9d0dcbd7ab2 Mon Sep 17 00:00:00 2001 From: Brent Perteet Date: Mon, 24 Aug 2026 19:53:02 -0500 Subject: [PATCH] fix(ci): use portable Apple signing selector --- Jenkinsfile.release | 2 +- scripts/ci/build-ios-signed.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile.release b/Jenkinsfile.release index fffbaa3..a8adf17 100644 --- a/Jenkinsfile.release +++ b/Jenkinsfile.release @@ -22,7 +22,7 @@ pipeline { DOTNET_NOLOGO = '1' NUGET_XMLDOC_MODE = 'skip' PATH = "/Users/brent/.dotnet:/opt/homebrew/bin:${env.PATH}" - UM_TRACE_CODESIGN_KEY = 'Apple Distribution: Underground Magnetics, Inc. (W2N8APPQ2C)' + UM_TRACE_CODESIGN_KEY = 'Apple Distribution' UM_TRACE_CODESIGN_PROVISION = 'UM Trace App Store' } diff --git a/scripts/ci/build-ios-signed.sh b/scripts/ci/build-ios-signed.sh index d979e4c..6aeb908 100755 --- a/scripts/ci/build-ios-signed.sh +++ b/scripts/ci/build-ios-signed.sh @@ -3,7 +3,7 @@ set -euo pipefail repo_dir="$(cd "$(dirname "${BASH_SOURCE[0]}")/../.." && pwd)" build_number="${1:-}" -codesign_key="${UM_TRACE_CODESIGN_KEY:-Apple Distribution: Underground Magnetics, Inc. (W2N8APPQ2C)}" +codesign_key="${UM_TRACE_CODESIGN_KEY:-Apple Distribution}" codesign_profile="${UM_TRACE_CODESIGN_PROVISION:-UM Trace App Store}" profile_dir="${HOME}/Library/MobileDevice/Provisioning Profiles" artifacts_dir="${repo_dir}/artifacts/ios-signed"