Add .github/workflows/npm-publish.yaml

Need to manually publish from Actions tab.
This commit is contained in:
Anshul Raj Verma 2025-02-27 16:24:12 +05:30
parent 67b553a3ae
commit 194061246f

20
.github/workflows/npm-publish.yaml vendored Normal file
View File

@ -0,0 +1,20 @@
name: NPM Package Publish
on:
workflow_dispatch:
jobs:
publish-npm:
runs-on: ubuntu-latest
permissions:
contents: read
id-token: write
steps:
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v2
- run: bun install
- run: bun run build
- name: Publish to NPM
run: npm publish --provenance --access public
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}