diff --git a/.github/workflows/npm-publish.yml b/.github/workflows/npm-publish.yml index b1dd625..28c44fe 100644 --- a/.github/workflows/npm-publish.yml +++ b/.github/workflows/npm-publish.yml @@ -11,19 +11,7 @@ on: workflow_dispatch: jobs: - build: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - uses: oven-sh/setup-bun@v2 - - name: Test - run: | - bun install - bun run build - bun test --coverage - publish-npm: - needs: build runs-on: ubuntu-latest permissions: contents: read @@ -34,6 +22,11 @@ jobs: with: node-version: 22 registry-url: https://registry.npmjs.org/ + - uses: oven-sh/setup-bun@v2 + - name: Test + run: | + bun install + bun run build - run: | PACKAGE_NAME=$(jq -r '.name' package.json) PACKAGE_VERSION=$(jq -r '.version' package.json) diff --git a/jsr.json b/jsr.json index a087f14..447f937 100644 --- a/jsr.json +++ b/jsr.json @@ -1,6 +1,6 @@ { "name": "@kunkun/ext-ossinsight", - "version": "0.0.2", + "version": "0.0.3", "license": "MIT", "exports": "./mod.ts", "publish": { diff --git a/package.json b/package.json index 5f040d5..9d83acd 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "license": "MIT", "$schema": "https://schema.kunkun.sh", "name": "kunkun-ext-ossinsight", - "version": "0.0.2", + "version": "0.0.3", "type": "module", "repository": { "type": "git", @@ -57,8 +57,10 @@ "typescript": "^5.7.3" }, "files": [ - "demo-images", "dist", - ".gitignore" + "demo-images", + "README.md", + "package.json", + "mod.ts" ] }