Skip to content

Commit

Permalink
⬆️ [Release] 1.0.0-alpha2 (#32)
Browse files Browse the repository at this point in the history
  • Loading branch information
kittinunf authored Nov 5, 2019
1 parent d16ba95 commit c91e6e2
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
12 changes: 7 additions & 5 deletions deploy_bintray.sh
Original file line number Diff line number Diff line change
@@ -1,14 +1,16 @@
#!/bin/bash

if [[ "$TRAVIS_BRANCH" == */release-v* ]]; then
if [[ "$TRAVIS_BRANCH" == */release-* ]]; then

echo "We're on release branch, deploying"

modules=("fuse")

for i in "${modules[@]}"
for i in $(ls -d */);
do
./gradlew :$i:clean :$i:build :$i:bintrayUpload -PBINTRAY_USER=$BINTRAY_USER -PBINTRAY_KEY=$BINTRAY_KEY -PdryRun=false
m=${i%%/}
if [[ $m == fuse* ]]; then
echo ">> Deploying $m ..."
./gradlew :$m:clean :$m:build :$m:bintrayUpload -PBINTRAY_USER=$BINTRAY_USER -PBINTRAY_KEY=$BINTRAY_KEY -PdryRun=false
fi
done

fi
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ org.gradle.jvmargs=-Xmx1536m
kotlin.code.style=official
android.enableJetifier=true
android.useAndroidX=true
artifactVersion=1.0.0-alpha1
artifactVersion=1.0.0-alpha2
artifactGroup=com.github.kittinunf.fuse
# Build
androidGradleVersion=3.5.1
Expand Down

0 comments on commit c91e6e2

Please sign in to comment.