updates build github action to test and upload the right assets

This commit is contained in:
Vitor Pamplona 2024-11-04 10:54:14 -05:00
parent 39c9b75bf4
commit eac078c42d

View File

@ -46,7 +46,22 @@ jobs:
uses: actions/upload-artifact@v4
with:
name: Debug APK
path: amethyst/build/outputs/apk/debug/app-debug.apk
path: amethyst/build/outputs/apk/**/debug/amethyst-play-universal-debug.apk
- name: Upload APK
uses: actions/upload-artifact@v4
with:
name: Debug APK
path: amethyst/build/outputs/apk/**/debug/amethyst-fdroid-universal-debug.apk
- name: Upload Compose Reports
uses: actions/upload-artifact@v4
with:
name: Build Reports
path: amethyst/build/compose_compiler
- name: Tests
run: ./gradlew test --no-daemon
- name: Upload Test Results
uses: actions/upload-artifact@v4