forked from mikepenz/Android-Iconics
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrelease.sh
More file actions
executable file
·24 lines (22 loc) · 1.14 KB
/
release.sh
File metadata and controls
executable file
·24 lines (22 loc) · 1.14 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/bin/bash
if [ "$1" = "release" ];
then
./gradlew clean build bintrayUpload -Plibrarycoreonly
./gradlew build bintrayUpload -x test -x lint -Plibraryviewsonly
#./gradlew build bintrayUpload -x test -x lint -Pcommunitymaterialonly
#./gradlew build bintrayUpload -x test -x lint -PDevIcononly
#./gradlew build bintrayUpload -x test -x lint -PEntypoonly
#./gradlew build bintrayUpload -x test -x lint -Pfontawesomeonly
#./gradlew build bintrayUpload -x test -x lint -PFoundationIconsonly
#./gradlew build bintrayUpload -x test -x lint -Pgooglematerialonly
#./gradlew build bintrayUpload -x test -x lint -PIoniconsonly
#./gradlew build bintrayUpload -x test -x lint -Pmaterialdesigniconiconly
#./gradlew build bintrayUpload -x test -x lint -Pmeteoconsonly
#./gradlew build bintrayUpload -x test -x lint -Pocticons
#./gradlew build bintrayUpload -x test -x lint -PPixeden7Strokeonly
#./gradlew build bintrayUpload -x test -x lint -PTypeiconsonly
#./gradlew build bintrayUpload -x test -x lint -Pweathericonsonly
#./gradlew build bintrayUpload -x test -x lint -Pmaterialdesigndxonly
else
echo todo
fi