Add CI/CD
Some checks failed
Build / build (push) Failing after 27s

This commit is contained in:
2025-10-08 16:14:26 +07:00
parent 6a9b6bc3a8
commit 00155e3619
2 changed files with 28 additions and 1 deletions

View File

@@ -22,7 +22,21 @@ jobs:
run: chmod +x ./gradlew
- name: Verify AAR File Integrity
run: unzip -t app/libs/firefly-go.aar || (echo "AAR file is corrupted! Fix it in the repo." && exit 1)
run: |
FILE="app/libs/firefly-go.aar"
if [ ! -f "$FILE" ]; then
echo "❌ File not found: $FILE"
exit 1
fi
echo "📄 File info:"
ls -lh "$FILE"
echo "🖇 Check AAR content:"
unzip -l "$FILE" || (echo "❌ AAR file is corrupted! Fix it in the repo." && exit 1)
echo "✅ AAR file seems OK"
- name: Clean Gradle
run: ./gradlew clean