diff --git a/.github/workflows/jsr-publish.yml b/.github/workflows/jsr-publish.yml new file mode 100644 index 0000000..48bbe9d --- /dev/null +++ b/.github/workflows/jsr-publish.yml @@ -0,0 +1,23 @@ +name: JSR Publish +on: + push: + branches: + - main + +jobs: + publish: + runs-on: ubuntu-latest + + permissions: + contents: read + id-token: write + + steps: + - uses: actions/checkout@v4 + - uses: oven-sh/setup-bun@v2 + - name: Install dependencies + run: bun install + - name: Build + run: bun run build + - name: Publish package + run: npx jsr publish diff --git a/jsr.json b/jsr.json new file mode 100644 index 0000000..c59e4e9 --- /dev/null +++ b/jsr.json @@ -0,0 +1,9 @@ +{ + "name": "@kunkun/kunkun-ext-system-info", + "version": "0.1.0", + "license": "MIT", + "exports": "./mod.ts", + "publish": { + "include": ["dist", "build", "README.md", "package.json", "mod.ts"] + } +} diff --git a/mod.ts b/mod.ts new file mode 100644 index 0000000..e69de29 diff --git a/package.json b/package.json index 4c8a72d..7b97a95 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,8 @@ { "$schema": "https://schema.kunkun.sh", "name": "kunkun-ext-system-info", - "version": "0.0.6", + "license": "MIT", + "version": "0.1.0", "repository": "https://github.com/kunkunsh/kunkun-ext-system-info", "kunkun": { "name": "System Info",