Skip to content

Commit 2d1f0b2

Browse files
committed
update: workflow github action download
1 parent cd82f7c commit 2d1f0b2

File tree

1 file changed

+13
-4
lines changed

1 file changed

+13
-4
lines changed

.github/workflows/android-ci-generate-apk-aab-download.yml

+13-4
Original file line numberDiff line numberDiff line change
@@ -68,19 +68,28 @@ jobs:
6868
- name: Download APK Debug - ${{ env.repository_name }}
6969
uses: actions/download-artifact@v3
7070
with:
71-
name: "*.apk"
7271
path: ${{ env.main_project_module }}/build/outputs/apk/debug/
7372

73+
- name: Display APK Debug - ${{ env.repository_name }} structure of downloaded files
74+
run: ls -R
75+
working-directory: ${{ env.main_project_module }}/build/outputs/apk/debug/
76+
7477
# Noted For Output [main_project_module]/build/outputs/apk/release/
7578
- name: Download APK Release - ${{ env.repository_name }}
7679
uses: actions/download-artifact@v3
7780
with:
78-
name: "*.apk"
7981
path: ${{ env.main_project_module }}/build/outputs/apk/release/
8082

83+
- name: Display APK Release - ${{ env.repository_name }} structure of downloaded files
84+
run: ls -R
85+
working-directory: ${{ env.main_project_module }}/build/outputs/apk/release/
86+
8187
# Noted For Output [main_project_module]/build/outputs/bundle/release/
8288
- name: Download AAB (App Bundle) Release - ${{ env.repository_name }}
8389
uses: actions/download-artifact@v3
8490
with:
85-
name: "*.aab"
86-
path: ${{ env.main_project_module }}/build/outputs/bundle/release/
91+
path: ${{ env.main_project_module }}/build/outputs/bundle/release/
92+
93+
- name: Display AAB (App Bundle) Release - ${{ env.repository_name }} structure of downloaded files
94+
run: ls -R
95+
working-directory: ${{ env.main_project_module }}/build/outputs/bundle/release/

0 commit comments

Comments
 (0)