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 147bcac commit ccf842fCopy full SHA for ccf842f
.github/workflows/release.yml
@@ -6,8 +6,15 @@ name: Release
6
- next
7
- beta
8
- "*.x"
9
+permissions:
10
+ contents: read # for checkout
11
jobs:
12
release:
13
+ permissions:
14
+ contents: write # to be able to publish a GitHub release
15
+ issues: write # to be able to comment on released issues
16
+ pull-requests: write # to be able to comment on released pull requests
17
+ id-token: write # to enable use of OIDC for npm provenance
18
name: release
19
runs-on: ubuntu-latest
20
steps:
package.json
@@ -79,7 +79,8 @@
79
"trailingComma": "es5"
80
},
81
"publishConfig": {
82
- "access": "public"
+ "access": "public",
83
+ "provenance": true
84
85
"repository": {
86
"type": "git",
0 commit comments