diff --git a/.github/workflows/npm-publish.yml b/.github/workflows/npm-publish.yml index 048b272..b1dd625 100644 --- a/.github/workflows/npm-publish.yml +++ b/.github/workflows/npm-publish.yml @@ -4,6 +4,8 @@ name: NPM Package Publish on: + push: + branches: [main] release: types: [created] workflow_dispatch: @@ -17,6 +19,7 @@ jobs: - name: Test run: | bun install + bun run build bun test --coverage publish-npm: diff --git a/jsr.json b/jsr.json index 21f3d28..a087f14 100644 --- a/jsr.json +++ b/jsr.json @@ -1,6 +1,6 @@ { "name": "@kunkun/ext-ossinsight", - "version": "0.0.1", + "version": "0.0.2", "license": "MIT", "exports": "./mod.ts", "publish": { diff --git a/package.json b/package.json index 7db75de..5f040d5 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,8 @@ { + "license": "MIT", "$schema": "https://schema.kunkun.sh", "name": "kunkun-ext-ossinsight", - "version": "0.0.1", + "version": "0.0.2", "type": "module", "repository": { "type": "git", @@ -57,7 +58,7 @@ }, "files": [ "demo-images", - "./dist", + "dist", ".gitignore" ] }