Skip to content

Commit 9850a89

Browse files
Update automation.yml
1 parent 107e836 commit 9850a89

File tree

1 file changed

+15
-2
lines changed

1 file changed

+15
-2
lines changed

.github/workflows/automation.yml

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,5 +78,18 @@ jobs:
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

0 commit comments

Comments
 (0)