All checks were successful
Build and Package DXT / build (push) Successful in 30s
31 lines
619 B
YAML
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@v3
|
|
with:
|
|
name: siwat-system-mcp-dxt
|
|
path: dist/siwat_system_mcp.dxt
|
|
retention-days: 30
|