CLI: fix binary build (#11591)

This commit is contained in:
Rohit Malhotra
2025-10-31 14:01:29 -04:00
committed by GitHub
parent d246ab1a21
commit 231019974c
2 changed files with 24 additions and 12 deletions

View File

@@ -71,6 +71,14 @@ jobs:
echo "✅ Build & test finished without ❌ markers"
- name: Verify binary files exist
run: |
if ! ls openhands-cli/dist/openhands* 1> /dev/null 2>&1; then
echo "❌ No binaries found to upload!"
exit 1
fi
echo "✅ Found binaries to upload."
- name: Upload binary artifact
uses: actions/upload-artifact@v4
with: