The publish key contains a set of options instructing electron-builder on how it should publish artifacts and build update info files for auto update.
String | Object | Array<Object | String> where Object it is Keygen, Generic Server, GitHub, S3, Spaces or Snap Store options. Order is important — first item will be used as a default auto-update server. Can be specified in the top-level configuration or any platform- (mac, linux, win) or target- (e.g. nsis) specific configuration.
Note that when using a generic server, you have to upload the built application and metadata files yourself.
Travis and AppVeyor support publishing artifacts. But it requires additional configuration for each CI and you need to configure what to publish.
electron-builder makes publishing dead simple.
!!! important "Publishing Must Be Explicitly Requested"
Publishing is not performed automatically. You must explicitly request publishing using the --publish CLI flag (e.g., --publish always, --publish onTag, --publish onTagOrDraft) or by setting the publish option in your configuration.
If GH_TOKEN or GITHUB_TOKEN is defined — defaults to [{provider: "github"}].
If KEYGEN_TOKEN is defined and GH_TOKEN or GITHUB_TOKEN is not — defaults to [{provider: "keygen"}].
If GITHUB_RELEASE_TOKEN is defined, it will be used instead of (GH_TOKEN or GITHUB_TOKEN) to publish your release.
- e.g. mac:
export GITHUB_RELEASE_TOKEN=<my token> - the
GITHUB_TOKENwill still be used when your app checks for updates, etc. - you could make your
GITHUB_TOKEN"Read-only" when creating a fine-grained personal access token, and "Read and write" for theGITHUB_RELEASE_TOKEN. - "Contents" fine-grained permission was sufficient. (at time of writing - Apr 2024)
!!! info "Snap store"
snap target by default publishes to snap store (the app store for Linux). To force publishing to another providers, explicitly specify publish configuration for snap.
You can publish to multiple providers. For example, to publish Windows artifacts to both GitHub and Bitbucket (order is important — first item will be used as a default auto-update server, so, in this example app will use github as auto-update provider):
{
"build": {
"win": {
"publish": ["github", "bitbucket"]
}
}
}win:
publish:
# an object provider for github with additional options
- provider: github
protocol: https
# a string provider for bitbucket that will use default options
- bitbucketYou can also configure publishing using CLI arguments, for example, to force publishing snap not to Snap Store, but to GitHub: -c.snap.publish=github
Custom publish provider can be used if need.
!!! tip "Macros" In all publish options File Macros are supported.
Excerpt from CLI Usage of electron-builder command:
Publishing:
--publish, -p [choices: "onTag", "onTagOrDraft", "always", "never"]
CLI --publish option values:
| Value | Description |
|---|---|
onTag |
on tag push only |
onTagOrDraft |
on tag push or if draft release exists |
always |
always publish |
never |
never publish |
But please consider using automatic rules instead of explicitly specifying publish:
-
If CI server detected, —
onTagOrDraft. -
If CI server reports that tag was pushed, —
onTag.Release will be drafted (if doesn't already exist) and artifacts published only if tag was pushed.
-
If npm script named
release, —always.
Add to scripts in the development package.json:
"release": "electron-builder"and if you run yarn release, a release will be drafted (if doesn't already exist) and artifacts published.
-
Draft a new release. Set the "Tag version" to the value of
versionin your applicationpackage.json, and prefix it withv. "Release title" can be anything you want.For example, if your application
package.jsonversion is1.0, your draft's "Tag version" would bev1.0. -
Push some commits. Every CI build will update the artifacts attached to this draft.
-
Once you are done, publish the release. GitHub will tag the latest commit for you.
The benefit of this workflow is that it allows you to always have the latest artifacts, and the release can be published once it is ready.
This example workflow is modelled on how releases are handled in maven (it is an example of one of many possible workflows, you are not forced to follow it).
- Setup your CI to publish on each commit. E.g.
"dist": "electron-builder --publish always"in yourpackage.json. - Set your version in your application
package.jsonto1.9.0-snapshot(or1.9.0-masteror whatever you want your development channel to be named). This will publish a file namedsnapshot.ymland a build namedsomething-snapshot.exe(and corresponding for mac) to S3. - When you are ready to deploy, simply change you package version to
1.9.0and push. This will then produce alatest.ymlandsomething.exeon s3. Usually you'll git-tag this version as well (just to keep track of it). - Change the version back to a snapshot version right after, i.e.
1.10.0-snapshot, and commit it.
Detected automatically using:
- repository in the application or development
package.json, - if not set, env
TRAVIS_REPO_SLUG- or
APPVEYOR_REPO_NAME - or
CIRCLE_PROJECT_USERNAME/CIRCLE_PROJECT_REPONAME,
- if no env, from
.git/configorigin url.
{!./builder-util-runtime.Interface.BitbucketOptions.md!}
{!./builder-util-runtime.Interface.GithubOptions.md!}
{!./builder-util-runtime.Interface.KeygenOptions.md!}
{!./builder-util-runtime.Interface.S3Options.md!}
{!./builder-util-runtime.Interface.SnapStoreOptions.md!}
{!./builder-util-runtime.Interface.SpacesOptions.md!}
(And maybe submit it upstream in a PR!) {!./builder-util-runtime.Interface.GenericServerOptions.md!}