osx-sign
osx-sign copied to clipboard
Codesign Electron macOS apps
It takes a 80-90 seconds to sign all of the files in our barebones Electron app. Looking at the debug logs, it appears as if this is because each file...
After struggling for several hours with my broken github actions pipeline, i realized that the "identity" that is automatically discovered is an object now, not just a string anymore. After...
This is a lightweight solution for https://github.com/electron/osx-sign/issues/240 issue. By adding the optional parameter `useDeepFlag` to `OnlySignOptions` to meet the needs of some people to add the `codesign --deep` identification, and...
The `--scripts` should go to `pkgbuild` in order for preinstall and postinstall script to work. So the single `productbuild` command has to be separated into `pkgbuild` and `productbuild`. I am...
Hey! Thanks for the great library – ran into an issue and have a small fix proposal. I know this has already been raised here: https://github.com/electron/osx-sign/issues/248 However, for #reasons we...
Hello, I've faced with different behavior in `@electron/osx-sign` v 1.0.5 vs `electron-osx-sign` v 0.5.0. If options `provisioningProfile` and `preEmbedProvisioningProfile` are not specified (`preEmbedProvisioningProfile` is true by default) then default `embedded.provisionprofile`...
osx-sign will attempt to pass a PnP zip path to `codesign`, which it can't read, resulting in an error: ``` WARNING: Code sign failed; please retry manually. Error: Command failed:...
i'm using the macos-alias package which contains a python3 symlink. i managed to sucessfully sign my app with the following configuration: ``` osxSign:{ identity: '', ignore: 'node_gyp_bins/python3', strictVerify: false, },...
# Issue running `electron-osx-sign --identity="Apple Distribution: "` seems to break python after running, resulting in a python reinstall every time. # Steps - Run `python3` (Observed with `python3.10`) Python starts...
Hi, I used this package successfully to sign an app for distribution two years ago, and coming back to it for the first time since then, I'm noticing that it's...