Skip to content

Commit eb72514

Browse files
intel352claude
andcommitted
fix: skip Windows LSP server build in release workflow
tliron/kutil v0.3.11 calls output.EnableWindowsANSIConsole() as a method on *termenv.Output, but termenv v0.15.2 exposes it as a package-level function. This breaks cross-compilation for Windows. Server and wfctl Windows builds are unaffected. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 929d97b commit eb72514

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

.github/workflows/release.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,8 @@ jobs:
188188
GOOS=linux GOARCH=arm64 go build -ldflags="${LDFLAGS}" -o dist/workflow-lsp-server-linux-arm64 ./cmd/workflow-lsp-server
189189
GOOS=darwin GOARCH=amd64 go build -ldflags="${LDFLAGS}" -o dist/workflow-lsp-server-darwin-amd64 ./cmd/workflow-lsp-server
190190
GOOS=darwin GOARCH=arm64 go build -ldflags="${LDFLAGS}" -o dist/workflow-lsp-server-darwin-arm64 ./cmd/workflow-lsp-server
191-
GOOS=windows GOARCH=amd64 go build -ldflags="${LDFLAGS}" -o dist/workflow-lsp-server-windows-amd64.exe ./cmd/workflow-lsp-server
191+
# Windows LSP build skipped: tliron/kutil v0.3.11 has a termenv API mismatch on Windows.
192+
# Tracked upstream. Server/wfctl Windows builds are unaffected.
192193
193194
- name: Download admin UI artifact
194195
uses: actions/download-artifact@v4

0 commit comments

Comments
 (0)