Skip to content

Commit 796782e

Browse files
committed
Fix smoke-windows (ui): rename extracted binary to match expected name
The UI zip contains codebase-memory-mcp-ui.exe but the smoke test always runs ./codebase-memory-mcp.exe. Copy the extracted binary to the expected name so both standard and ui variants work.
1 parent 0f3c772 commit 796782e

2 files changed

Lines changed: 2 additions & 0 deletions

File tree

.github/workflows/dry-run.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -291,6 +291,7 @@ jobs:
291291
run: |
292292
SUFFIX=${{ matrix.variant == 'ui' && '-ui' || '' }}
293293
unzip -o "codebase-memory-mcp${SUFFIX}-windows-amd64.zip"
294+
cp "codebase-memory-mcp${SUFFIX}.exe" codebase-memory-mcp.exe
294295
295296
- name: Smoke test (${{ matrix.variant }}, windows-amd64)
296297
shell: msys2 {0}

.github/workflows/release.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -284,6 +284,7 @@ jobs:
284284
run: |
285285
SUFFIX=${{ matrix.variant == 'ui' && '-ui' || '' }}
286286
unzip -o "codebase-memory-mcp${SUFFIX}-windows-amd64.zip"
287+
cp "codebase-memory-mcp${SUFFIX}.exe" codebase-memory-mcp.exe
287288
288289
- name: Smoke test (${{ matrix.variant }}, windows-amd64)
289290
shell: msys2 {0}

0 commit comments

Comments
 (0)