Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,14 @@ jobs:
publish-npm:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
Comment thread
bteng22 marked this conversation as resolved.
Outdated
- uses: actions/setup-node@v6
with:
node-version: 20
node-version: 24
Comment thread
bteng22 marked this conversation as resolved.
Outdated
registry-url: https://registry.npmjs.org
- run: npm ci
- run: npm test
- run: npm version ${TAG_NAME} --git-tag-version=false --allow-same-version
env:
TAG_NAME: ${{ github.event.release.tag_name }}
- run: npm publish --access public --provenance
- run: NODE_AUTH_TOKEN="" npm publish --provenance
Comment thread
bteng22 marked this conversation as resolved.
Outdated
Loading