We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8e9adf8 commit a828dcaCopy full SHA for a828dca
.github/workflows/publish.yml
@@ -20,4 +20,10 @@ jobs:
20
node-version: '24.x'
21
registry-url: 'https://registry.npmjs.org'
22
- run: bun install --frozen-lockfile
23
- - run: npm publish --provenance --access public
+ - name: Publish to npm
24
+ run: |
25
+ if [[ "${{ github.event.release.tag_name }}" == *"beta"* ]]; then
26
+ npm publish --provenance --access public --tag beta
27
+ else
28
+ npm publish --provenance --access public
29
+ fi
0 commit comments