Skip to content

Latest commit

 

History

History
17 lines (10 loc) · 1 KB

maintainers.md

File metadata and controls

17 lines (10 loc) · 1 KB

Publishing Package Versions

Overview

The package is published to the npm registry via GitHub Actions. Each time a new GitHub release is created, GitHub Actions will automatically push a new version to npm.

To publish a new version to npm, all you need to do is:

  1. Bump the version number in the package.json file
  2. Create a new release
  3. Let the publish workflow do its job

For publishing, a valid npm access token is required. We make one available to the workflow as a secret.

References