feat(git): add publish github action

This commit is contained in:
Nan72 2025-02-14 12:55:30 +07:00
parent dfdf760823
commit b3e491a8f0
No known key found for this signature in database
2 changed files with 23 additions and 1 deletions

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_PUBLISH_KEY}}

View File

@ -4,6 +4,7 @@
"version": "0.0.1",
"license": "MIT",
"type": "module",
"repository": "https://github.com/NaN72dev/kunkun-ext-string-utils",
"kunkun": {
"name": "String Utils",
"shortDescription": "A string utility headless Extension",
@ -73,7 +74,8 @@
},
"scripts": {
"dev": "bun build.ts dev",
"build": "bun build.ts"
"build": "bun build.ts",
"publish": "npm publish --provenance"
},
"dependencies": {
"@kksh/api": "0.1.3",