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 368dba4 commit 2822aabCopy full SHA for 2822aab
.github/workflows/release.yml
@@ -6,6 +6,13 @@ name: Release
6
- next
7
- beta
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
@@ -98,7 +98,8 @@
98
]
99
},
100
"publishConfig": {
101
- "access": "public"
+ "access": "public",
102
+ "provenance": true
103
104
"engines": {
105
"node": ">= 18"
0 commit comments