@electron-forge/publisher-electron-release-server
v7.5.0
Published
Electron release server publisher for Electron Forge
Downloads
5,609
Keywords
Readme
publisher-electron-release-server
@electron-forge/publisher-electron-release-server
publishes all your artifacts to a hosted instance of Electron Release Server where users will be able to download them.
Please note that Electron Release Server is a community powered project and is not associated with Electron Forge or the Electron project directly.
Configuration options are documented in PublisherERSConfig
.
module.exports = {
// ...
publishers: [
{
name: '@electron-forge/publisher-electron-release-server',
config: {
baseUrl: 'https://update.server.com',
username: 'admin',
password: 'admin'
}
}
]
};