@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 token
option using an environment variable, don't hard code into in your config.