mirror of
https://github.com/kunkunsh/kunkun-ext-rag.git
synced 2025-07-09 14:01:30 +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",
|
"$schema": "https://schema.kunkun.sh",
|
||||||
"name": "RAG",
|
"name": "kunkun-ext-rag",
|
||||||
"draft": true,
|
"draft": true,
|
||||||
"version": "0.0.3",
|
"version": "0.0.4",
|
||||||
"private": true,
|
"private": true,
|
||||||
"kunkun": {
|
"kunkun": {
|
||||||
"name": "TODO: Change Display Name",
|
"name": "RAG",
|
||||||
"shortDescription": "A Custom UI template for sveltekit",
|
"shortDescription": "Retrieval Augmented Generation",
|
||||||
"longDescription": "A Custom UI template for sveltekit",
|
"longDescription": "A local RAG agent for local files.",
|
||||||
"identifier": "RAG",
|
"identifier": "RAG",
|
||||||
"icon": {
|
"icon": {
|
||||||
"type": "iconify",
|
"type": "iconify",
|
||||||
|
Loading…
x
Reference in New Issue
Block a user