We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 119a0b3 commit cac1e4eCopy full SHA for cac1e4e
scripts/release.js
@@ -507,7 +507,8 @@ async function publishPackages(version) {
507
}
508
// add provenance metadata when releasing from CI
509
// canary release commits are not pushed therefore we don't need to add provenance
510
- if (process.env.CI && !isCanary) {
+ // also skip provenance if not publishing to actual npm
511
+ if (process.env.CI && !isCanary && !args.registry) {
512
additionalPublishFlags.push('--provenance')
513
514
0 commit comments