From b3e491a8f00c6f6a9b17cc7270046ae3cfd3d7b6 Mon Sep 17 00:00:00 2001 From: Nan72 Date: Fri, 14 Feb 2025 12:55:30 +0700 Subject: [PATCH] feat(git): add publish github action --- .github/workflows/npm-publish.yml | 20 ++++++++++++++++++++ package.json | 4 +++- 2 files changed, 23 insertions(+), 1 deletion(-) create mode 100644 .github/workflows/npm-publish.yml diff --git a/.github/workflows/npm-publish.yml b/.github/workflows/npm-publish.yml new file mode 100644 index 0000000..1614f3f --- /dev/null +++ b/.github/workflows/npm-publish.yml @@ -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}} \ No newline at end of file diff --git a/package.json b/package.json index a5f5e0f..25c5868 100644 --- a/package.json +++ b/package.json @@ -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",