Replies: 2 comments
-
I should mention, I'm able to pass code signing with just Before:
After:
|
Beta Was this translation helpful? Give feedback.
-
Do you get a better error if you run it with the --verbose flag? (if you use npm make sure to append another -- so it's v2 handles macos code signing completely different (mainly because of ios iirc) and self signed certificates weren't ever officially supported so i assume they were not thought of or tested when the big changes happened. i don't know that much about the implementation so if you want to look into it yourself, the issue is that this function here returns no entries for the used keychain. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
I'm signing via a self-signed certificate, which has worked well enough so far with Tauri v1. Tauri v2, however, can't sign the application.
I'm using the same environment variables in CI with the v2 builds as I was with v1, but I only get this error:
I've tried
APPLE_SIGNING_IDENTITY="<my email>"
APPLE_SIGNING_IDENTITY="<my name>"
(what the certificate lists itself as in Keychain Access)APPLE_SIGNING_IDENTITY="-"
(recommended in some issues)Beta Was this translation helpful? Give feedback.
All reactions