File tree Expand file tree Collapse file tree 1 file changed +15
-2
lines changed
Expand file tree Collapse file tree 1 file changed +15
-2
lines changed Original file line number Diff line number Diff line change 7878 run : |
7979 APK_PATH="./app-repo/app/build/outputs/apk/debug/app-debug.apk"
8080 echo "Generated APK location: $APK_PATH"
81- # You can also use 'find' to be more dynamic if the name might change
82- # find ./app-repo/app/build/outputs/apk -name "*.apk"
81+
82+ # --- Step 7: Upload APK and other artifacts ---
83+ - name : Upload Build Artifacts
84+ uses : actions/upload-artifact@v4
85+ with :
86+ name : BranchLinkSimulator-App-Debug-Build
87+ path : ./app-repo/app/build/outputs/apk/debug/app-debug.apk
88+ # If you have other artifacts you want to save, you can add them here.
89+ # For example, to save all APKs:
90+ # path: ./app-repo/app/build/outputs/apk/
91+ # Or specific files:
92+ # path: |
93+ # ./app-repo/app/build/outputs/apk/debug/app-debug.apk
94+ # ./app-repo/app/build/reports/
95+ # ./app-repo/some_other_file.log
You can’t perform that action at this time.
0 commit comments