update workflow add gradlew

This commit is contained in:
izzy2lost
2025-08-11 08:30:36 -04:00
parent 8545bbb1da
commit 9027cbaa6b
2 changed files with 249 additions and 2 deletions
+9 -2
View File
@@ -43,15 +43,22 @@ jobs:
- name: Make gradlew executable
run: chmod +x android/gradlew
- name: Copy assets (if needed)
run: |
cd android
if [ -f "copy_assets.bat" ]; then
echo "Asset copy scripts found"
fi
- name: Build Debug APK
run: |
cd android
./gradlew assembleDebug
./gradlew assembleDebug --stacktrace
- name: Build Release APK
run: |
cd android
./gradlew assembleRelease
./gradlew assembleRelease --stacktrace
- name: Upload Debug APK
uses: actions/upload-artifact@v4