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",