-
Notifications
You must be signed in to change notification settings - Fork 10
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update expired Windows certificate and release workflow #265
Comments
This might be helpful: electron-userland/electron-builder#6158 (comment) |
Ledger is utilizing the |
Summary of current statusOur app's executables are being built using
@killerwhile has implemented the signing of the above ProblemThe Possible solution 1Thankfully, // package.json
"build:{
"win": {
"sign": "signWindows.js",
},
}, So, the idea is: 💡 Don't use the
|
The second option is also downloading the eSigner tool, but a version which is only 15MB (https://github.com/element-hq/element-desktop/blob/develop/.github/workflows/build_windows.yaml#L117C1-L117C153). |
Microsoft changed the way they provide code-signing certificates. They want the signing to be FIPS-140 compliant. That's a very restrictive security standard. Our current release workflow that uses
electron-builder
needs to be updated.Related issues:
The text was updated successfully, but these errors were encountered: