File tree Expand file tree Collapse file tree 1 file changed +7
-1
lines changed
Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change 9696 # Import certificate
9797 echo $APPLE_CERTIFICATE | base64 --decode > certificate.p12
9898 security import certificate.p12 -P "$APPLE_CERTIFICATE_PASSWORD" -A -t cert -f pkcs12 -k $KEYCHAIN_PATH
99- security list-keychain -d user -s $KEYCHAIN_PATH
99+
100+ # Set the keychain as default search list
101+ security list-keychain -d user -s $KEYCHAIN_PATH login.keychain
100102
101103 # Allow codesign to access keychain
102104 security set-key-partition-list -S apple-tool:,apple:,codesign: -s -k "$KEYCHAIN_PASSWORD" $KEYCHAIN_PATH
@@ -106,6 +108,10 @@ jobs:
106108
107109 echo "✅ Certificate imported successfully"
108110
111+ # Verify certificate is available
112+ echo "📋 Available signing identities:"
113+ security find-identity -v -p codesigning $KEYCHAIN_PATH
114+
109115 - name : Build Tauri app (Universal Binary)
110116 env :
111117 APPLE_SIGNING_IDENTITY : ${{ secrets.APPLE_SIGNING_IDENTITY }}
You can’t perform that action at this time.
0 commit comments