Skip to content

Commit f659b78

Browse files
teallarsonclaude
andcommitted
fix: remove --provenance from npm publish
Bun does not support provenance attestation, and the mixed bun/npm setup with --provenance was causing 404 errors on publish. Removing provenance unblocks publishing; it can be re-added if the project migrates fully to npm or if bun adds provenance support. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent 7f7b7f7 commit f659b78

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77

88
permissions:
99
contents: write
10-
id-token: write
10+
1111

1212
jobs:
1313
release:
@@ -44,7 +44,7 @@ jobs:
4444

4545
- name: Publish to npm
4646
if: steps.version.outputs.changed == 'true'
47-
run: npm publish --access public --provenance
47+
run: npm publish --access public
4848

4949
- name: Create GitHub Release
5050
if: steps.version.outputs.changed == 'true'

0 commit comments

Comments
 (0)