Skip to main content

Releasing

What this page is for

Prepare and publish backend changes using the current release workflow.

Steps

  1. Ensure tests and lint pass.
cd backend
pnpm test
pnpm lint
pnpm typecheck
  1. Create/update changesets if versioned release is needed.
pnpm changeset
  1. Version packages.
pnpm version
  1. Publish artifacts.
pnpm release

Verify

  • backend/CHANGELOG.md reflects the release.
  • Release commit/tag is present in git history.

Troubleshooting

  • Missing changeset warnings: add a changeset before versioning.
  • Publish/auth failures: verify package registry credentials and CI secrets.