Skip to content

Commit af5370b

Browse files
committed
find .apk properly
1 parent e47dae0 commit af5370b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/pr_test_build_android.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -281,7 +281,8 @@ jobs:
281281
- name: Find APK file
282282
id: find_apk
283283
run: |
284-
apk_file=$(ls ${{ github.workspace }}/build/app/outputs/flutter-apk/test-apk/*_slack.apk || echo "")
284+
set -x
285+
apk_file=$(ls build/app/outputs/flutter-apk/test-apk/*_slack.apk || exit 1)
285286
echo "APK_FILE=$apk_file" >> $GITHUB_ENV
286287
287288
- name: Send Test APK

0 commit comments

Comments
 (0)