Skip to content

Commit

Permalink
find .apk properly
Browse files Browse the repository at this point in the history
  • Loading branch information
MrCyjaneK committed Jan 7, 2025
1 parent e47dae0 commit af5370b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/pr_test_build_android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,8 @@ jobs:
- name: Find APK file
id: find_apk
run: |
apk_file=$(ls ${{ github.workspace }}/build/app/outputs/flutter-apk/test-apk/*_slack.apk || echo "")
set -x
apk_file=$(ls build/app/outputs/flutter-apk/test-apk/*_slack.apk || exit 1)
echo "APK_FILE=$apk_file" >> $GITHUB_ENV
- name: Send Test APK
Expand Down

0 comments on commit af5370b

Please sign in to comment.