Summary: As expected, this didn't work on the first try. Issues I've fixed: - Actually switch back to snapshots. - Use more widely compatible bash location. - Don't exit (because of `set -e`) if `grep` returns with status 1. Reviewed By: jknoxville Differential Revision: D9556770 fbshipit-source-id: 0900e6498e7fc8e16c941e77927005573ca310d5
17 lines
588 B
Bash
Executable File
17 lines
588 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -e
|
|
|
|
BASEDIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )/.." && pwd )"
|
|
IS_SNAPSHOT="$(grep 'VERSION_NAME=[0-9\.]\+-SNAPSHOT' "$BASEDIR/gradle.properties" || echo "")"
|
|
|
|
if [ "$ANDROID_PUBLISH_KEY" == "" ]; then
|
|
echo "No encryption key. Skipping snapshot deployment."
|
|
exit
|
|
elif [ "$IS_SNAPSHOT" == "" ]; then
|
|
echo "Skipping build. Given build doesn't appear to be a SNAPSHOT release."
|
|
exit 1
|
|
else
|
|
openssl aes-256-cbc -d -in scripts/gradle-publish-keys.enc -k "$ANDROID_PUBLISH_KEY" >> "$BASEDIR/gradle.properties"
|
|
"$BASEDIR"/gradlew uploadArchives --info
|
|
fi
|