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 58b452f commit 155fbbeCopy full SHA for 155fbbe
1 file changed
.github/workflows/publish.yml
@@ -4,18 +4,19 @@ on:
4
release:
5
types: [created]
6
7
+permissions:
8
+ id-token: write
9
+ contents: read
10
+
11
jobs:
12
publish:
13
runs-on: ubuntu-latest
14
steps:
- - uses: actions/checkout@v5
15
+ - uses: actions/checkout@v6
16
- uses: actions/setup-node@v6
17
with:
18
node-version-file: .nvmrc
- registry-url: https://registry.npmjs.org/
- always-auth: true
19
+ registry-url: https://registry.npmjs.org
20
+ package-manager-cache: false
21
- run: yarn install --frozen-lockfile
- - run: npm publish --access public
- env:
- NODE_AUTH_TOKEN: ${{secrets.NODE_AUTH_TOKEN}}
- CI: true
22
+ - run: npm publish
0 commit comments