Skip to content

Latest commit

 

History

History
25 lines (20 loc) · 726 Bytes

snapcraft.md

File metadata and controls

25 lines (20 loc) · 726 Bytes

Snapcraft

The Snapcraft target publishes your .snap artifacts to the Snap Store. All configuration of your package is done via the Snapcraft maker.

This target requires that the system has the snapcraft utility installed.

Configuration options are documented in PublisherSnapConfig

Usage

{% code title="forge.config.js" %}

module.exports = {
  // ...
  publishers: [
    {
      name: '@electron-forge/publisher-snapcraft',
      config: {
        release: "[latest/edge, insider/stable]"
      }
    }
  ]
}

{% endcode %}