We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cc3868f commit d1cdf76Copy full SHA for d1cdf76
1 file changed
.github/workflows/publish.yml
@@ -29,10 +29,18 @@ jobs:
29
- name: Setup Node.js
30
uses: actions/setup-node@v4
31
with:
32
- node-version: 20
+ node-version: 24
33
cache: pnpm
34
registry-url: https://registry.npmjs.org
35
36
+ - name: Setup npm CLI for trusted publishing
37
+ run: npm install -g npm@11.5.1
38
+
39
+ - name: Show runtime versions
40
+ run: |
41
+ node --version
42
+ npm --version
43
44
- name: Validate tag matches package version
45
run: |
46
PACKAGE_VERSION="$(node -p "require('./package.json').version")"
@@ -57,4 +65,4 @@ jobs:
57
65
run: pnpm release:check
58
66
59
67
- name: Publish
60
- run: npm publish --provenance --access public
68
+ run: npm publish --access public
0 commit comments