feat: initialize project with package.json and tsconfig.json
Some checks failed
Build and Package DXT / build (push) Failing after 47s
Some checks failed
Build and Package DXT / build (push) Failing after 47s
- Added package.json for project dependencies and scripts - Included TypeScript configuration in tsconfig.json
This commit is contained in:
commit
a433ac337d
8 changed files with 696 additions and 0 deletions
31
.gitea/workflows/build.yml
Normal file
31
.gitea/workflows/build.yml
Normal file
|
@ -0,0 +1,31 @@
|
|||
name: Build and Package DXT
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ main ]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Setup Bun
|
||||
uses: oven-sh/setup-bun@v1
|
||||
with:
|
||||
bun-version: latest
|
||||
|
||||
- name: Install dependencies
|
||||
run: bun install --frozen-lockfile
|
||||
|
||||
- name: Build DXT package
|
||||
run: bun build.ts
|
||||
|
||||
- name: Upload DXT artifact
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: siwat-system-mcp-dxt
|
||||
path: dist/siwat_system_mcp.dxt
|
||||
retention-days: 30
|
Loading…
Add table
Add a link
Reference in a new issue