UNPKG

762 BMarkdownView Raw
1# Nucleus
2
3The Nucleus target publishes all your artifacts to an instance of Nucleus Update Server, this update service supports all three platforms. Check out the README at [`atlassian/github`](https://github.com/atlassian/nucleus) for more information on this project.
4
5Configuration options are documented in [`PublisherNucleusConfig`](https://js.electronforge.io/publisher/nucleus/interfaces/publishernucleusconfig.html)
6
7
8--------
9
10⚠️ We recommend you set the `token` option using an environment variable, don't hard code it into your config
11
12--------
13
14### Usage
15
16```javascript
17{
18 name: '@electron-forge/publisher-nucleus',
19 config: {
20 host: 'https://my-nucleus.mysite.com'
21 appId: 1,
22 channelId: 'abcdefg',
23 token: 'my-token'
24 }
25}
26```
27