Skip to content

Commit cd82f7c

Browse files
committed
update: workflow github action download
1 parent 4069f41 commit cd82f7c

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,16 +68,19 @@ jobs:
6868
- name: Download APK Debug - ${{ env.repository_name }}
6969
uses: actions/download-artifact@v3
7070
with:
71+
name: "*.apk"
7172
path: ${{ env.main_project_module }}/build/outputs/apk/debug/
7273

7374
# Noted For Output [main_project_module]/build/outputs/apk/release/
7475
- name: Download APK Release - ${{ env.repository_name }}
7576
uses: actions/download-artifact@v3
7677
with:
78+
name: "*.apk"
7779
path: ${{ env.main_project_module }}/build/outputs/apk/release/
7880

7981
# Noted For Output [main_project_module]/build/outputs/bundle/release/
8082
- name: Download AAB (App Bundle) Release - ${{ env.repository_name }}
8183
uses: actions/download-artifact@v3
8284
with:
85+
name: "*.aab"
8386
path: ${{ env.main_project_module }}/build/outputs/bundle/release/

0 commit comments

Comments
 (0)