Skip to content

Commit 718a5b7

Browse files
committed
fix(opentui): bypass SFW shim for Zig build (SSL proxy breaks dep fetch)
1 parent 1ab7bcc commit 718a5b7

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

.github/workflows/opentui.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -250,10 +250,12 @@ jobs:
250250
echo "Zig location: $(which zig)"
251251
zig version
252252
253+
# Run build directly (not through pnpm shim) to avoid SFW intercepting
254+
# Zig's HTTPS dependency fetches with SSL errors.
253255
if [ "$BUILD_MODE" = "prod" ]; then
254-
pnpm --filter opentui-builder build --prod
256+
node packages/opentui-builder/scripts/build.mjs --prod
255257
else
256-
pnpm --filter opentui-builder build --dev
258+
node packages/opentui-builder/scripts/build.mjs --dev
257259
fi
258260
259261
echo "Build complete"

0 commit comments

Comments
 (0)