Create npm-publish.yml

This commit is contained in:
Joel Stüdle 2025-03-13 10:22:17 +00:00 committed by GitHub
parent 04fc2e7b1d
commit 99406d5c5a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

20
.github/workflows/npm-publish.yml 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_ACCESS_TOKEN}}