"electron-forge make" outputting .deb and .rpm but not .exe

107 Views Asked by At

I'm using WSL2 and am successfully running

npm run make

on

...
"scripts": {
    ...,
    "make": "electron-forge make"
  },
...

but when creating distributables, it only creates

✔ Making distributables
  ✔ Making a deb distributable for linux/x64 [12s]
  ✔ Making a rpm distributable for linux/x64 [25s]

Are there any ways to get electron-forge to output an exe for windows as well?

1

There are 1 best solutions below

0
On

Here is the example forge config file setup which allows my GitHub actions to generate the multiple vendor executables

module.exports = {
  packagerConfig: {},
  rebuildConfig: {},
  makers: [
    {
      name: "@electron-forge/maker-squirrel",
      config: {},
    },
    {
      name: "@electron-forge/maker-zip",
      platforms: ["darwin"],
    },
    {
      name: "@electron-forge/maker-dmg",
      platforms: ["darwin"],
    },
    {
      name: "@electron-forge/maker-deb",
      config: {},
    },
    {
      name: "@electron-forge/maker-rpm",
      config: {},
    },
  ],
  plugins: [
    {
      name: "@electron-forge/plugin-webpack",
      config: {
        devContentSecurityPolicy: `default-src * self blob: data: gap:; style-src * self 'unsafe-inline' blob: data: gap:; script-src * 'self' 'unsafe-eval' 'unsafe-inline' blob: data: gap:; object-src * 'self' blob: data: gap:; img-src * self 'unsafe-inline' blob: data: gap:; connect-src self * 'unsafe-inline' blob: data: gap:; frame-src * self blob: data: gap:;`,
        mainConfig: "./webpack.main.config.js",
        renderer: {
          config: "./webpack.renderer.config.js",
          entryPoints: [
            {
              html: "./src/index.html",
              js: "./src/renderer.js",
              name: "main_window",
              preload: {
                js: "./src/preload.js",
              },
            },
          ],
        },
      },
    },
  ],
  publishers: [
    {
      name: "@electron-forge/publisher-github",
      config: {
        repository: {
          owner: "rsathishtechit",
          name: "udeler-pro",
        },
        prerelease: true,
      },
    },
  ],
};

Output of the above config

enter image description here

Project link - https://github.com/rsathishtechit/udeler-pro