App Signing for Production
Sign your app with @overwolf/ow-electron-builder so the gaming packages (GEP, Overlay, Recorder) load at runtime once the app is distributed to users.
For running gaming packages locally before signing, see Dev Mode.
| Property | Value |
|---|---|
| Surface | Overwolf Electron (ow-electron) |
| Minimum version | @overwolf/ow-electron-builder 26.9.0 |
| Platform | Windows |
| When to use | Building a production app for distribution |
| Your certificate | A code-signing certificate for your exe (your own certificate, not Overwolf's). See code signing. |
warning
Code-signing your exe with your own certificate is now required (previously optional). Overwolf signs the gaming package integrity and you sign the exe. Without both, the gaming packages (GEP, Overlay, Recorder) will not load at runtime.
Signing credentials and variables
| Variable | Purpose | Source |
|---|---|---|
OW_CLI_EMAIL | Signing server authentication | Your Overwolf Console account email |
OW_CLI_API_KEY | Signing server authentication | Overwolf Console, under Profile > API Keys |
OW_BUILD_KEY | Signing server authentication for the build step | Overwolf Console, under Release management > App Keys |
Prerequisites
Before you sign, you need:
- A registered app in the Overwolf Console with an assigned App UID.
- A valid
OW_CLI_EMAILandOW_CLI_API_KEYfor an account that owns the app. - An
OW_BUILD_KEYfrom the Overwolf Console, for the build step. - A code-signing certificate for your
exe(your own certificate, not Overwolf's). See code signing. @overwolf/ow-electron-builderinstalled.
Step 1: Set signing credentials
Provide the required signing credentials as environment variables:
export OW_CLI_EMAIL=your-email@example.com
export OW_CLI_API_KEY=your-api-key
export OW_BUILD_KEY=your-build-key
Step 2: Run the builder
Build and sign your app with a single command:
npx @overwolf/ow-electron-builder
Related pages
- Dev Mode, to run gaming packages locally before signing.
- Develop your app (Phase 2) and Release your app (Phase 3), the onboarding journey steps that point here.
- Overwolf Electron Technical Overview, the code signing section.
- Do I need my own code certificate? in the Overwolf Electron FAQ.