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 ba76fdd commit bafb758Copy full SHA for bafb758
.github/workflows/publish.yml
@@ -5,6 +5,10 @@ on:
5
tags:
6
- v*
7
8
+permissions:
9
+ id-token: write # Required for OIDC
10
+ contents: read
11
+
12
jobs:
13
build:
14
runs-on: ubuntu-latest
@@ -14,16 +18,14 @@ jobs:
18
- uses: pnpm/action-setup@v4
15
19
name: Install pnpm
16
20
with:
17
- version: 9
21
+ version: 10
22
run_install: false
23
24
- name: Install Node.js
25
uses: actions/setup-node@v4
26
- node-version: 22
27
+ node-version: 25
28
cache: 'pnpm'
29
registry-url: 'https://registry.npmjs.org'
30
31
- run: pnpm i && pnpm publish --no-git-checks
- env:
- NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
0 commit comments