Skip to content

Commit d076903

Browse files
authored
Drop NODE_AUTH_TOKEN from publish script, update versions (#105)
1 parent 2dae026 commit d076903

1 file changed

Lines changed: 4 additions & 6 deletions

File tree

.github/workflows/publish.yml

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,17 +8,15 @@ jobs:
88
publish-npm:
99
runs-on: ubuntu-latest
1010
steps:
11-
- uses: actions/checkout@v3
12-
- uses: actions/setup-node@v3
11+
- uses: actions/checkout@v6
12+
- uses: actions/setup-node@v6
1313
with:
14-
node-version: 18
14+
node-version: 25
1515
registry-url: https://registry.npmjs.org/
1616
cache: npm
1717
- run: npm ci
1818
- run: npm test
1919
- run: npm version ${TAG_NAME} --git-tag-version=false
2020
env:
2121
TAG_NAME: ${{ github.event.release.tag_name }}
22-
- run: npm whoami; npm publish
23-
env:
24-
NODE_AUTH_TOKEN: ${{secrets.npm_token}}
22+
- run: npm publish

0 commit comments

Comments
 (0)