Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions scripts/performRelease/performLernaRelease.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@ export default async function performLernaRelease(prsSinceLastTag: PR[]) {

const { stdout, stderr } = await exec(
// --no-verify-access is needed because the CI token isn't valid for that endpoint
// --provenance generates build attestation when using OIDC in GitHub Actions
`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}`,
);
if (stdout) {
console.log('Lerna output', stdout);
Expand Down
Loading