mirror of
https://github.com/kunkunsh/kunkun-ext-ip-info.git
synced 2025-04-03 19:06:42 +00:00
ci: enable JSR publish
This commit is contained in:
parent
d889faf9d2
commit
45bb2907ce
23
.github/workflows/jsr-publish.yml
vendored
Normal file
23
.github/workflows/jsr-publish.yml
vendored
Normal file
@ -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
|
7
.github/workflows/npm-publish.yml
vendored
7
.github/workflows/npm-publish.yml
vendored
@ -23,12 +23,9 @@ jobs:
|
|||||||
node-version: 22
|
node-version: 22
|
||||||
registry-url: https://registry.npmjs.org/
|
registry-url: https://registry.npmjs.org/
|
||||||
|
|
||||||
- uses: pnpm/action-setup@v2
|
|
||||||
with:
|
|
||||||
version: latest
|
|
||||||
- uses: oven-sh/setup-bun@v2
|
- uses: oven-sh/setup-bun@v2
|
||||||
- run: pnpm install
|
- run: bun install
|
||||||
- run: pnpm build
|
- run: bun run build
|
||||||
- run: |
|
- run: |
|
||||||
PACKAGE_NAME=$(jq -r '.name' package.json)
|
PACKAGE_NAME=$(jq -r '.name' package.json)
|
||||||
PACKAGE_VERSION=$(jq -r '.version' package.json)
|
PACKAGE_VERSION=$(jq -r '.version' package.json)
|
||||||
|
9
jsr.json
Normal file
9
jsr.json
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
{
|
||||||
|
"name": "@kunkun/kunkun-ext-ip-info",
|
||||||
|
"version": "0.1.0",
|
||||||
|
"license": "MIT",
|
||||||
|
"exports": "./mod.ts",
|
||||||
|
"publish": {
|
||||||
|
"include": ["dist", "demo", "README.md", "package.json", "mod.ts"]
|
||||||
|
}
|
||||||
|
}
|
@ -1,7 +1,8 @@
|
|||||||
{
|
{
|
||||||
"$schema": "https://schema.kunkun.sh/",
|
"$schema": "https://schema.kunkun.sh/",
|
||||||
"name": "kunkun-ext-ip-info",
|
"name": "kunkun-ext-ip-info",
|
||||||
"version": "0.0.9",
|
"version": "0.1.0",
|
||||||
|
"license": "MIT",
|
||||||
"module": "index.ts",
|
"module": "index.ts",
|
||||||
"repository": "https://github.com/kunkunsh/kunkun-ext-ip-info",
|
"repository": "https://github.com/kunkunsh/kunkun-ext-ip-info",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
@ -36,7 +37,11 @@
|
|||||||
"build": "bun build.ts"
|
"build": "bun build.ts"
|
||||||
},
|
},
|
||||||
"files": [
|
"files": [
|
||||||
"dist"
|
"dist",
|
||||||
|
"demo",
|
||||||
|
"README.md",
|
||||||
|
"package.json",
|
||||||
|
"mod.ts"
|
||||||
],
|
],
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@kksh/api": "^0.0.52"
|
"@kksh/api": "^0.0.52"
|
||||||
|
2074
pnpm-lock.yaml
generated
2074
pnpm-lock.yaml
generated
File diff suppressed because it is too large
Load Diff
Loading…
x
Reference in New Issue
Block a user