Build kiwix-lib-app in the CI and publish the release version.

This commit is contained in:
Matthieu Gautier
2019-06-27 14:50:28 +02:00
parent 3a1cd6ddb2
commit daf93f2e2f
3 changed files with 160 additions and 10 deletions

View File

@ -69,7 +69,7 @@ then
done
fi
cd ${EXPORT_DIR}/GIT
(cd ${EXPORT_DIR}/GIT
GIT_REPOS=$(ls -l | awk '/^d/ { print $9 }')
if [[ "x$GIT_REPOS" != "x" ]]
then
@ -80,5 +80,16 @@ then
)
done
fi
)
BINTRAY_ARCHIVES=$(find $BINTRAY_ARCHIVES_DIR/*_bintray_info.json -type f)
if [[ "x$BINTRAY_ARCHIVES" != "x" ]]
then
for archive_info in $BINTRAY_ARCHIVES
do
${HOME}/kiwix-build/scripts/upload_kiwix_lib_android_to_bintray.py $archive_info
done
fi
fi