mirror of
https://github.com/NaN72dev/kunkun-ext-string-utils.git
synced 2025-04-03 17:56:45 +00:00
feat(git): add publish github action
This commit is contained in:
parent
dfdf760823
commit
b3e491a8f0
20
.github/workflows/npm-publish.yml
vendored
Normal file
20
.github/workflows/npm-publish.yml
vendored
Normal 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}}
|
@ -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",
|
||||
|
Loading…
x
Reference in New Issue
Block a user