We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1ab7bcc commit 718a5b7Copy full SHA for 718a5b7
1 file changed
.github/workflows/opentui.yml
@@ -250,10 +250,12 @@ jobs:
250
echo "Zig location: $(which zig)"
251
zig version
252
253
+ # Run build directly (not through pnpm shim) to avoid SFW intercepting
254
+ # Zig's HTTPS dependency fetches with SSL errors.
255
if [ "$BUILD_MODE" = "prod" ]; then
- pnpm --filter opentui-builder build --prod
256
+ node packages/opentui-builder/scripts/build.mjs --prod
257
else
- pnpm --filter opentui-builder build --dev
258
+ node packages/opentui-builder/scripts/build.mjs --dev
259
fi
260
261
echo "Build complete"
0 commit comments