We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2dae026 commit d076903Copy full SHA for d076903
1 file changed
.github/workflows/publish.yml
@@ -8,17 +8,15 @@ jobs:
8
publish-npm:
9
runs-on: ubuntu-latest
10
steps:
11
- - uses: actions/checkout@v3
12
- - uses: actions/setup-node@v3
+ - uses: actions/checkout@v6
+ - uses: actions/setup-node@v6
13
with:
14
- node-version: 18
+ node-version: 25
15
registry-url: https://registry.npmjs.org/
16
cache: npm
17
- run: npm ci
18
- run: npm test
19
- run: npm version ${TAG_NAME} --git-tag-version=false
20
env:
21
TAG_NAME: ${{ github.event.release.tag_name }}
22
- - run: npm whoami; npm publish
23
- env:
24
- NODE_AUTH_TOKEN: ${{secrets.npm_token}}
+ - run: npm publish
0 commit comments