From cd97197159a666d21ac5b899a25b9da028fbeefc Mon Sep 17 00:00:00 2001 From: Huakun Shen Date: Sat, 18 Jan 2025 06:28:49 -0500 Subject: [PATCH] ci: add jsr publish --- .github/workflows/jsr-publish.yml | 23 +++++++++++++++++++++++ jsr.json | 9 +++++++++ mod.ts | 0 package.json | 3 ++- 4 files changed, 34 insertions(+), 1 deletion(-) create mode 100644 .github/workflows/jsr-publish.yml create mode 100644 jsr.json create mode 100644 mod.ts 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",