ci: add npm publish workflow with provenance#18
Merged
Conversation
- Add manual-trigger publish.yml using software-mansion/npm-package-publish - Add repository and publishConfig fields to scoped sub-packages so provenance attestations can be generated - Set publishConfig.access to public on the root package for consistency
chmjkb
approved these changes
May 21, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Adds a manual-trigger
publish.ymlworkflow built on top ofsoftware-mansion/npm-package-publish, and the package.json fields it needs to produce a valid provenance attestation.What changed
.github/workflows/publish.yml—workflow_dispatchonly. Inputs: package (dropdown of the three published packages), release-type (stable/nightly/beta/alpha/rc), explicit version,perform-git-operations, anddry-run(defaults totrue).repository(withdirectorysubpath) andpublishConfig.access: publicadded to both scoped sub-packages — required for provenance on monorepo packages and for npm to allow publishing scoped packages publicly.publishConfig.access: publicadded to the root for consistency.Before merging
publish.yml. The package settings must also use the 2FA mode that allows trusted publishing (the default "Require 2FA and disallow tokens" is fine — Trusted Publishing is not token-based).dry-run: trueto validate the OIDC handshake.Notes
perform-git-operations: trueto avoid duplicate tag pushes.