From 4c2b6172a74152f0be04c54e670f55c442402bdc Mon Sep 17 00:00:00 2001 From: Claude Date: Tue, 3 Mar 2026 12:34:02 +0000 Subject: [PATCH] fix(build): add missing bin directory to win32-x64 package The Windows binary publish job failed because packages/archgate-win32-x64/bin/ did not exist. The darwin-arm64 and linux-x64 packages both have a bin/.gitkeep placeholder so the directory is present at checkout, but the win32-x64 package was missing it. PowerShell's Copy-Item cannot create intermediate directories, causing the "Copy binary into npm package (Windows)" step to fail. https://claude.ai/code/session_016nNKpJ6DQBtEUGCGGC8jEK --- packages/archgate-win32-x64/bin/.gitkeep | 0 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 packages/archgate-win32-x64/bin/.gitkeep diff --git a/packages/archgate-win32-x64/bin/.gitkeep b/packages/archgate-win32-x64/bin/.gitkeep new file mode 100644 index 00000000..e69de29b