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 2b1bfde commit 50c0b00Copy full SHA for 50c0b00
.github/workflows/release.yml
@@ -3,6 +3,13 @@ name: Release
3
push:
4
branches:
5
- main
6
+
7
+# These are recommended by the semantic-release docs: https://github.com/semantic-release/npm#npm-provenance
8
+permissions:
9
+ contents: write # to be able to publish a GitHub release
10
+ issues: write # to be able to comment on released issues
11
+ pull-requests: write # to be able to comment on released pull requests
12
+ id-token: write # to enable use of OIDC for npm provenance
13
jobs:
14
release:
15
name: release
package.json
@@ -22,5 +22,8 @@
22
"branches": [
23
"main"
24
]
25
+ },
26
+ "publishConfig": {
27
+ "provenance": true
28
}
29
0 commit comments