File tree Expand file tree Collapse file tree 2 files changed +24
-1
lines changed
Expand file tree Collapse file tree 2 files changed +24
-1
lines changed Original file line number Diff line number Diff line change 66 branches : [main]
77 paths :
88 - " apps/web/**"
9+ - " apps/mcp-server/**"
10+ - " packages/shared/**"
911
1012jobs :
11- deploy :
13+ deploy-web :
1214 runs-on : ubuntu-latest
1315 permissions :
1416 contents : read
3032 apiToken : ${{ secrets.CLOUDFLARE_API_TOKEN }}
3133 accountId : ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}
3234 command : pages deploy apps/web/dist --project-name=ooxml-dev
35+
36+ deploy-mcp :
37+ runs-on : ubuntu-latest
38+ permissions :
39+ contents : read
40+ deployments : write
41+
42+ steps :
43+ - uses : actions/checkout@v6
44+
45+ - uses : oven-sh/setup-bun@v2
46+
47+ - run : bun install
48+
49+ - name : Deploy MCP Server
50+ uses : cloudflare/wrangler-action@v3
51+ with :
52+ apiToken : ${{ secrets.CLOUDFLARE_API_TOKEN }}
53+ accountId : ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}
54+ workingDirectory : apps/mcp-server
Original file line number Diff line number Diff line change @@ -9,6 +9,7 @@ compatibility_flags = ["nodejs_compat"]
99
1010[observability ]
1111enabled = true
12+ head_sampling_rate = 1
1213
1314[vars ]
1415# Non-secret environment variables can go here
You can’t perform that action at this time.
0 commit comments