Skip to content

Latest commit

 

History

History
31 lines (21 loc) · 441 Bytes

File metadata and controls

31 lines (21 loc) · 441 Bytes

Releasing

One-time setup

  • Create npm token with publish access.
  • Add NPM_TOKEN secret to GitHub Actions.

Local preflight

npm ci
npm run release:check

Version + tag

npm version patch
git push origin main --follow-tags

Publish flow

  • Pushing tag v* triggers .github/workflows/release.yml
  • Workflow builds and publishes to npm.

Manual fallback

npm publish --access public