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 6246a76 commit 33b056aCopy full SHA for 33b056a
2 files changed
.github/workflows/release.yml
@@ -25,11 +25,7 @@ jobs:
25
- run: npm run typecheck
26
- run: npm test
27
- run: npm run build
28
- - name: Publish to npm
29
- # NOTE: --provenance is intentionally omitted for the very first
30
- # publish. Some npm flows fail with E404 on new-package PUTs when
31
- # provenance signing runs before the package exists in the
32
- # registry. Re-enable on subsequent versions once 0.1.0 is live.
33
- run: npm publish --access public
+ - name: Publish to npm with provenance
+ run: npm publish --provenance --access public
34
env:
35
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
package.json
@@ -62,6 +62,7 @@
62
"node": ">=18.17.0"
63
},
64
"publishConfig": {
65
- "access": "public"
+ "access": "public",
66
+ "provenance": true
67
}
68
0 commit comments