Skip to content

Commit 08474bc

Browse files
committed
fix(ci): correct socket package verification in build-sea workflow
The socket package produces bootstrap.js, not index.mjs. Verification was checking for wrong file causing false failure. Socket package.json shows: "bin": { "socket": "./dist/bootstrap.js" } Build produces: - packages/socket/dist/bootstrap.js - packages/socket/dist/bootstrap-smol.js Not: - packages/socket/dist/index.mjs (doesn't exist)
1 parent 445f602 commit 08474bc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/build-sea.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ jobs:
158158
echo ""
159159
echo "Final verification:"
160160
ls -lh packages/bootstrap/dist/bootstrap-npm.js && echo "✓ bootstrap-npm.js present" || (echo "❌ bootstrap-npm.js missing" && exit 1)
161-
ls -lh packages/socket/dist/index.mjs && echo "✓ socket package present" || (echo "❌ socket package missing" && exit 1)
161+
ls -lh packages/socket/dist/bootstrap.js && echo "✓ socket bootstrap.js present" || (echo "❌ socket bootstrap.js missing" && exit 1)
162162
163163
echo "✓ All build artifacts verified and in correct location"
164164

0 commit comments

Comments
 (0)