We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 707d1e7 commit 451b2d3Copy full SHA for 451b2d3
.github/workflows/release.yml
@@ -6,6 +6,12 @@ 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
jobs:
16
release:
17
name: release
package.json
@@ -40,5 +40,9 @@
40
},
41
"engines": {
42
"node": ">=18"
43
+ },
44
+ "publishConfig": {
45
+ "access": "public",
46
+ "provenance": true
47
}
48
0 commit comments