Skip to content

Commit 05a8aeb

Browse files
author
Lucas McDonald
committed
fix(release): publish with --concurrency 1
Serialize package publishes so we don't submit 27 provenance attestations to the Rekor transparency log in parallel, reducing timeout-induced 409s.
1 parent ad36103 commit 05a8aeb

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/prod-release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -115,9 +115,9 @@ jobs:
115115
DIST_TAG: ${{ github.event.inputs.dist_tag }}
116116
run: |
117117
if [ -n "$DIST_TAG" ]; then
118-
npx lerna publish from-package --yes --dist-tag "$DIST_TAG"
118+
npx lerna publish from-package --yes --concurrency 1 --dist-tag "$DIST_TAG"
119119
else
120-
npx lerna publish from-package --yes
120+
npx lerna publish from-package --yes --concurrency 1
121121
fi
122122
123123
# Once publishing is complete, validate that the published packages are useable

0 commit comments

Comments
 (0)