fix: add JWT_SECRET env to electron release build step

The Next.js build in electron-release.yml fails because the secrets
validator detects missing JWT_SECRET and exits with code 1. This adds
the env var to the build step, matching the pattern used in ci.yml.
This commit is contained in:
benzntech
2026-03-02 22:50:33 +05:30
parent 8dce812a4d
commit 11f43ca65c

View File

@@ -89,6 +89,8 @@ jobs:
run: npm ci
- name: Build Next.js standalone
env:
JWT_SECRET: ci-build-secret-with-sufficient-length-for-validation
run: npm run build
- name: Install Electron dependencies