How to build app for Mac App Store without notarization? #13901
-
So, I am quite new to app distribution process, and I tried to rely on Tauri's documentation pages but something is missing or I just don't understand the process correctly, so I am failing to upload my app to the Mac App Store. Firstly, as I understand, I need to sign the app using So, then I tried to follow other instructions with signing the build with the So, my question is how can I avoid notarization process since I don't need it for uploading to the Apple Store? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Don't configure the notarization env vars. For signing you only need |
Beta Was this translation helpful? Give feedback.
Don't configure the notarization env vars. For signing you only need
APPLE_CERTIFICATE
andAPPLE_CERTIFICATE_PASSWORD
. If the others aren't set tauri will skip notarization. Of course we could do better here but that's the current state.