Feature Request: Support disabling `--wait` during notarization
- Dominant language
- TypeScript
- Stars
- 193
- Forks
- 41
- Avg merge
- 4h 45m
- Merged PRs (30d)
- 3
Description
Currently `electron/notarize` waits for Apple's notarization process to complete. In CI environments like GitHub Actions, this can block the runner for several minutes because Apple's notarization service can be slow.
It would be helpful if the library supported an option to disable the `--wait` behavior so that developers can submit the notarization request and check the result later.
For example:
```js
await notarize({
appPath,
appleId,
appleIdPassword,
teamId,
wait: false
})
```
This would allow CI workflows to submit notarization and then poll the status separately using `notarytool info`, reducing unnecessary runner time.
If this feature makes sense, I'd be happy to open a PR to implement it.
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.