File tree Expand file tree Collapse file tree 1 file changed +6
-4
lines changed
Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -37,14 +37,16 @@ jobs:
3737 KEYSTORE_PASSWORD : ${{ secrets.KEYSTORE_PASSWORD }}
3838 RELEASE_SIGN_KEY_ALIAS : ${{ secrets.RELEASE_SIGN_KEY_ALIAS }}
3939 RELEASE_SIGN_KEY_PASSWORD : ${{ secrets.RELEASE_SIGN_KEY_PASSWORD }}
40- - name : Debug APK output
40+ - name : Prepare APK for Firebase
4141 run : |
42- echo "APK files found:"
43- find app/build/outputs -type f -name "*.apk"
42+ mkdir -p firebase-artifact
43+ cp app/build/outputs/apk/release/*.apk firebase-artifact/
44+ echo "APK prepared:"
45+ ls -l firebase-artifact
4446 - name : Upload to Firebase App Distribution
4547 uses : wzieba/Firebase-Distribution-Github-Action@v1
4648 with :
4749 appId : ${{ secrets.FIREBASE_APP_ID }}
4850 serviceCredentialsFileContent : ${{ secrets.FIREBASE_SERVICE_ACCOUNT_JSON }}
4951 groups : testers
50- file : app/build/outputs/apk/release /*.apk
52+ file : firebase-artifact /*.apk
You can’t perform that action at this time.
0 commit comments