lower minimum apks
This commit is contained in:
parent
e926825eb9
commit
d480d6b3df
2
.github/scripts/move-apks.sh
vendored
Normal file → Executable file
2
.github/scripts/move-apks.sh
vendored
Normal file → Executable file
@ -7,7 +7,7 @@ cp -R ~/apk-artifacts/ $PWD
|
||||
APKS=( **/*".apk" )
|
||||
|
||||
# Fail if too little extensions seem to have been built
|
||||
if [ "${#APKS[@]}" -le "100" ]; then
|
||||
if [ "${#APKS[@]}" -le "50" ]; then
|
||||
echo "Insufficient amount of APKs found. Please check the project configuration."
|
||||
exit 1
|
||||
else
|
||||
|
2
.github/scripts/sign-apks.sh
vendored
2
.github/scripts/sign-apks.sh
vendored
@ -7,7 +7,7 @@ shopt -s globstar nullglob extglob
|
||||
APKS=( **/*".apk" )
|
||||
|
||||
# Fail if too little extensions seem to have been built
|
||||
if [ "${#APKS[@]}" < "1" ]; then
|
||||
if [ "${#APKS[@]}" -le "50" ]; then
|
||||
echo "Insufficient amount of APKs found. Please check the project configuration."
|
||||
exit 1;
|
||||
fi;
|
||||
|
Loading…
x
Reference in New Issue
Block a user