6.4.2 • Published 8 months ago

@mahnunchik/publisher-github v6.4.2

Weekly downloads
14
License
MIT
Repository
github
Last release
8 months ago

publisher-github

Changes from pull request applied https://github.com/electron/forge/pull/1761

@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.

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