chore: use fallback installer for bun run in build workflow

This commit is contained in:
2025-08-08 13:34:54 -05:00
parent 85420711df
commit 61050a5585

View File

@@ -120,7 +120,7 @@ jobs:
echo "Build attempt $attempt of $MAX_RETRIES"
# Capture output and check for specific error while preserving real-time output
if bun run web.build.ts 2>&1 | tee /tmp/build_output.log; then
if bun run -i web.build.ts 2>&1 | tee /tmp/build_output.log; then
echo "Build successful on attempt $attempt"
break
else