You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Moreover, reading the electron-builder docs, what I understand is that all we need to provide are these 2 env vars and electron-builder will take care of signing:
CSC_LINK: The HTTPS link (or base64-encoded data, or file:// link, or local path) to certificate (*.p12 or *.pfx file).
CSC_KEY_PASSWORD: The password to decrypt the certificate given in CSC_LINK.
I am not sure, however, what values to provide for these env vars.
Together with Benoit's help, the issue was addressed by issuing a new certificate through SSL.com. I've kept a screenshot guide on Notion on how to do that. Closing issue
Context
We are using
electron-builder
to package our app to a Windows executable. In the past @killerwhile and I have created a custom signing script to:Problem
I got the following error when I tried to release an RC today (from the
next
branch). It originates from the execution of this line: https://github.com/alephium/alephium-frontend/blob/next/apps/desktop-wallet/.signWindows.js#L121Options
Option 1: fix custom signing script
So far I have not managed to find what the actual problem is. TBC
Option 2: Rely on
electron-builder
signing capabilitiesI tried to see what happens if I simply remove our custom sign script (0ccad9d). The release workflow succeeded but our exe was not signed.
5 months ago, someone commented:
Moreover, reading the electron-builder docs, what I understand is that all we need to provide are these 2 env vars and
electron-builder
will take care of signing:CSC_LINK
: The HTTPS link (or base64-encoded data, or file:// link, or local path) to certificate (*.p12 or *.pfx file).CSC_KEY_PASSWORD
: The password to decrypt the certificate given in CSC_LINK.I am not sure, however, what values to provide for these env vars.
Relevant:
Relevant links
The text was updated successfully, but these errors were encountered: