You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
237 B
15 lines
237 B
4 months ago
|
if [ -z "$SONATYPE_USER" ]
|
||
|
then
|
||
|
echo "Please define SONATYPE_USER"
|
||
|
exit 1
|
||
|
fi
|
||
|
|
||
|
if [ -z "$SONATYPE_PASSWORD" ]
|
||
|
then
|
||
|
echo "Please define SONATYPE_PASSWORD"
|
||
|
exit 1
|
||
|
fi
|
||
|
|
||
|
./gradlew uploadArchives && ./gradlew closeAndPromoteRepository
|
||
|
|