add rebuilding of native modules for Linux and Windows
All checks were successful
Release Electron App / release-desktop (push) Successful in 6m29s

This commit is contained in:
2026-03-03 16:53:52 +01:00
parent 0186a07e2d
commit cded75eb0f

View File

@@ -26,6 +26,9 @@ jobs:
- name: Set version from tag
run: npm version "${GITHUB_REF_NAME#v}" --no-git-tag-version --allow-same-version
- name: Rebuild native modules for Linux
run: npx --yes @electron/rebuild --platform=linux --arch=x64
- name: Make App (Linux)
run: npm run make -- --platform=linux --arch=x64
@@ -37,6 +40,11 @@ jobs:
env:
WINEDEBUG: '-all'
- name: Rebuild native modules for Windows
run: npx --yes @electron/rebuild --platform=win32 --arch=x64 --only=better-sqlite3,keytar
env:
WINEDEBUG: '-all'
- name: Make App (Windows)
run: npm run make -- --platform=win32 --arch=x64
env: