From c8107a37a099ce5923b79ab27067e8824fa31e20 Mon Sep 17 00:00:00 2001 From: Connor Yoh Date: Fri, 11 Jul 2025 11:20:51 +0100 Subject: [PATCH] KEychain path --- .github/workflows/tauri-test.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/tauri-test.yml b/.github/workflows/tauri-test.yml index d9c255fec..270fad230 100644 --- a/.github/workflows/tauri-test.yml +++ b/.github/workflows/tauri-test.yml @@ -235,8 +235,11 @@ jobs: # Sign the JAR using jarsigner with the Apple Developer certificate echo "🔐 Signing JAR with Apple Developer certificate..." + KEYCHAIN_PATH="$HOME/Library/Keychains/build.keychain-db" + echo "Using keychain path: $KEYCHAIN_PATH" + jarsigner -verbose \ - -keystore ../../../build.keychain \ + -keystore "$KEYCHAIN_PATH" \ -storetype KeychainStore \ -storepass "$KEYCHAIN_PASSWORD" \ -signedjar "${MAIN_JAR}.signed" \