siwatsystem-mcp-dxt/.gitea/workflows/build.yml
Siwat Sirichai a433ac337d
Some checks failed
Build and Package DXT / build (push) Failing after 47s
feat: initialize project with package.json and tsconfig.json
- Added package.json for project dependencies and scripts
- Included TypeScript configuration in tsconfig.json
2025-07-06 01:31:52 +07:00

31 lines
619 B
YAML

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