mirror of https://github.com/alibaba/MNN.git
8 lines
217 B
Bash
8 lines
217 B
Bash
|
cd project/android/
|
||
|
./gradlew assembleRelease
|
||
|
if [[ -z "${DEPLOY_ENV}" ]]; then
|
||
|
echo "Android Bintray uploaded due to untrusted CI environment"
|
||
|
else
|
||
|
./gradlew bintrayUpload -PbintrayKey=${BINTRAY_DEPLOY_TOKEN}
|
||
|
fi
|