Update test.yml

This commit is contained in:
Xwite
2024-08-27 12:15:44 +08:00
parent c884a13c43
commit 6cb469efa2
+6 -1
View File
@@ -129,7 +129,12 @@ jobs:
- name: Check Build production
run: |
if [ ! -e "${{ github.workspace }}/apk/legado_*.apk" ]; then
if [ ! -d ${{ github.workspace }}/apk ]; then
echo "Build production not found! Check gradle logs."
exit 1
fi
cd ${{ github.workspace }}/apk/
if [ ! -e legado_*.apk ]; then
echo "Build production not found! Check gradle logs."
exit 1
fi