Détail du package

@electron-forge/publisher-github

electron106kMIT7.10.2

Github publisher for Electron Forge

readme

publisher-github

@electron-forge/publisher-github publishes all your artifacts to GitHub releases, this allows your users to download the files straight from your repository or if your repository is open source you can use update.electronjs.org and get a free hosted update service.

Configuration options are documented in PublisherGithubConfig.

javascript title=forge.config.js module.exports = { // ... publishers: [ { name: '@electron-forge/publisher-github', config: { repository: { owner: 'me', name: 'awesome-thing' }, prerelease: true } } ] };