We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 67b632d commit 6658c93Copy full SHA for 6658c93
1 file changed
.github/workflows/release.yml
@@ -5,6 +5,11 @@ on:
5
tags:
6
- v[0-9]+.[0-9]+.[0-9]+
7
8
+# Getting an ID token is required for NPMJS trusted publishers
9
+permissions:
10
+ id-token: write # Required for OIDC
11
+ contents: read
12
+
13
env:
14
CI: true
15
jobs:
@@ -20,6 +25,4 @@ jobs:
20
25
cache: "npm"
21
26
22
27
- run: npm ci
23
- - run: npm publish --access public
24
- env:
- NODE_AUTH_TOKEN: ${{ secrets.INRUPT_NPM_TOKEN }}
28
+ - run: npm publish
0 commit comments