mirror of
https://github.com/NaN72dev/kunkun-ext-string-utils.git
synced 2025-04-04 10:16:44 +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",
|
"version": "0.0.1",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
|
"repository": "https://github.com/NaN72dev/kunkun-ext-string-utils",
|
||||||
"kunkun": {
|
"kunkun": {
|
||||||
"name": "String Utils",
|
"name": "String Utils",
|
||||||
"shortDescription": "A string utility headless Extension",
|
"shortDescription": "A string utility headless Extension",
|
||||||
@ -73,7 +74,8 @@
|
|||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"dev": "bun build.ts dev",
|
"dev": "bun build.ts dev",
|
||||||
"build": "bun build.ts"
|
"build": "bun build.ts",
|
||||||
|
"publish": "npm publish --provenance"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@kksh/api": "0.1.3",
|
"@kksh/api": "0.1.3",
|
||||||
|
Loading…
x
Reference in New Issue
Block a user