Skip to content

Commit 031d0ca

Browse files
committed
bump deps, update release workflow, scope package
1 parent f441245 commit 031d0ca

3 files changed

Lines changed: 667 additions & 581 deletions

File tree

.github/workflows/release.yaml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,18 +18,16 @@ jobs:
1818
with:
1919
release-type: node
2020
# The logic below handles the npm publication:
21-
- uses: actions/checkout@v4
21+
- uses: actions/checkout@v5
2222
# these if statements ensure that a publication only occurs when
2323
# a new release is created:
2424
if: ${{ steps.release.outputs.release_created }}
25-
- uses: actions/setup-node@v4
25+
- uses: actions/setup-node@v5
2626
with:
27-
node-version: 20
27+
node-version: 24
2828
registry-url: 'https://registry.npmjs.org'
2929
if: ${{ steps.release.outputs.release_created }}
3030
- run: npm ci
3131
if: ${{ steps.release.outputs.release_created }}
3232
- run: npm publish --provenance --access public
33-
env:
34-
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
3533
if: ${{ steps.release.outputs.release_created }}

0 commit comments

Comments
 (0)