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

pull/7833/head jitsi-meet_5116
Titus-Andrei Moldovan 5 years ago committed by Saúl Ibarra Corretgé
parent 943996e5b6
commit 9f9e192c3c
  1. 4
      android/scripts/release-sdk.sh

@ -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

Loading…
Cancel
Save