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 4a9125f commit 1138da0Copy full SHA for 1138da0
.github/workflows/release.yml
@@ -6,6 +6,13 @@ name: Release
6
- beta
7
- next
8
- "*.x"
9
+# These are recommended by the semantic-release docs: https://github.com/semantic-release/npm#npm-provenance
10
+permissions:
11
+ contents: write # to be able to publish a GitHub release
12
+ issues: write # to be able to comment on released issues
13
+ pull-requests: write # to be able to comment on released pull requests
14
+ id-token: write # to enable use of OIDC for npm provenance
15
+
16
jobs:
17
release:
18
name: release
package.json
@@ -113,7 +113,8 @@
113
]
114
},
115
"publishConfig": {
116
- "access": "public"
+ "access": "public",
117
+ "provenance": true
118
119
"engines": {
120
"node": ">= 18"
0 commit comments