fix(android) - separates the invocation of the gradle tasks. It was noticed on some configurations that the publish task was executed before assembleRelease finished

This commit is contained in:
Titus-Andrei Moldovan 2020-10-07 12:47:25 +03:00 committed by Saúl Ibarra Corretgé
parent 943996e5b6
commit 9f9e192c3c
1 changed files with 3 additions and 1 deletions

View File

@ -89,7 +89,9 @@ fi
# Now build and publish the Jitsi Meet SDK and its dependencies
echo "Building and publishing the Jitsi Meet SDK"
pushd ${THIS_DIR}/../
./gradlew clean assembleRelease publish
./gradlew clean
./gradlew assembleRelease
./gradlew publish
popd
if [[ $DO_GIT_TAG == 1 ]]; then