Click here to download the latest releasae.
- Node.js (v16 or higher)
- npm (comes with Node.js)
npm installTo build the installer for your current platform:
npm run app:distThe built installer will be created in the dist/ folder.
Platform-specific builds:
- Windows: Creates an NSIS installer (
.exe) - macOS: Creates a DMG installer (
.dmg) - requires macOS to build - Linux: Creates both
.deband.AppImagepackages
To build for a specific platform:
npm run app:dist -- --win # Windows
npm run app:dist -- --mac # macOS
npm run app:dist -- --linux # LinuxWhen you want to create a new release, follow these steps:
- Update the version in your project's
package.jsonfile (e.g.1.9.0) - Commit that change (
git commit -am v1.9.0) - Tag your commit (
git tag v1.9.0). - Push your changes to GitHub (
git push && git push --tags)
After building successfully, the action will publish your release artifacts. By default, a new release draft will be created on GitHub with download links for your app. If you want to change this behavior, have a look at the electron-builder docs.