mirror of
https://github.com/kunkunsh/kunkun-ext-rag.git
synced 2025-04-04 02:16:41 +00:00
add GitHub Actions workflow for package publishing and update package metadata
This commit is contained in:
parent
9172f92af2
commit
2ea92b752d
25
.github/workflows/jsr-publish.yml
vendored
Normal file
25
.github/workflows/jsr-publish.yml
vendored
Normal file
@ -0,0 +1,25 @@
|
||||
name: 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
|
||||
with:
|
||||
bun-version: latest
|
||||
- name: Publish package
|
||||
run: |
|
||||
bun install
|
||||
bun run build
|
||||
bunx jsr publish --allow-slow-types
|
6
jsr.json
Normal file
6
jsr.json
Normal file
@ -0,0 +1,6 @@
|
||||
{
|
||||
"name": "@kunkun/kunkun-ext-vscode",
|
||||
"version": "0.0.4",
|
||||
"license": "MIT",
|
||||
"exports": "./mod.ts"
|
||||
}
|
10
package.json
10
package.json
@ -1,13 +1,13 @@
|
||||
{
|
||||
"$schema": "https://schema.kunkun.sh",
|
||||
"name": "RAG",
|
||||
"name": "kunkun-ext-rag",
|
||||
"draft": true,
|
||||
"version": "0.0.3",
|
||||
"version": "0.0.4",
|
||||
"private": true,
|
||||
"kunkun": {
|
||||
"name": "TODO: Change Display Name",
|
||||
"shortDescription": "A Custom UI template for sveltekit",
|
||||
"longDescription": "A Custom UI template for sveltekit",
|
||||
"name": "RAG",
|
||||
"shortDescription": "Retrieval Augmented Generation",
|
||||
"longDescription": "A local RAG agent for local files.",
|
||||
"identifier": "RAG",
|
||||
"icon": {
|
||||
"type": "iconify",
|
||||
|
Loading…
x
Reference in New Issue
Block a user