forge/packages/publisher/nucleus
George Xu ccf6063258
v7.3.1
2024-03-20 09:22:15 -07:00
..
src refactor: use listr2 for the package, make and publish commands (#3043) 2022-11-03 16:01:45 -07:00
README.md build: lint JS in Markdown (#3251) 2023-06-15 14:24:38 -07:00
package.json v7.3.1 2024-03-20 09:22:15 -07:00

README.md

publisher-nucleus

@electron-forge/publisher-nucleus publishes all your artifacts to an instance of Nucleus Update Server where users will be able to download them. This update service supports all three platforms.

Check out the README at atlassian/nucleus for more information on this project.

Configuration options are documented in `Publisher NucleusConfig.

module.exports = {
  // ...
  publishers: [
    {
      name: '@electron-forge/publisher-nucleus',
      config: {
        host: 'https://my-nucleus.mysite.com',
        appId: 1,
        channelId: 'abcdefg',
        token: 'my-token'
      }
    }
  ]
};

We recommend you set the tokenoption using an environment variable, don't hard code into in your config.