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