We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b85b645 commit e533bafCopy full SHA for e533baf
scripts/performRelease/performLernaRelease.ts
@@ -45,8 +45,8 @@ export default async function performLernaRelease(prsSinceLastTag: PR[]) {
45
46
const { stdout, stderr } = await exec(
47
// --no-verify-access is needed because the CI token isn't valid for that endpoint
48
- // --provenance generates build attestation when using OIDC in GitHub Actions
49
- `npx lerna publish ${version} --exact --yes --dist-tag ${distTag} --provenance`,
+ // provenance is automatically generated when using OIDC Trusted Publishers
+ `npx lerna publish ${version} --exact --yes --dist-tag ${distTag}`,
50
);
51
if (stdout) {
52
console.log('Lerna output', stdout);
0 commit comments