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.
30 lines
490 B
30 lines
490 B
#!/bin/sh |
|
|
|
if [ $# -lt 1 ] || [ $# -gt 2 ]; then |
|
echo 'Usage: ./publish.sh TAG [MESSAGE]' >&2 |
|
exit 1 |
|
fi |
|
|
|
if [ "$(git diff --stat)" != '' ]; then |
|
echo 'ERROR: repository is dirty.' >&2 |
|
exit 1 |
|
fi |
|
|
|
TAG="$1" |
|
MESSAGE="$2" |
|
|
|
if [ "$(git tag -l | grep $TAG)" != '' ]; then |
|
echo "ERROR: tag $TAG already exists." >&2 |
|
exit 1 |
|
fi |
|
|
|
if [ "$MESSAGE" == '' ]; then |
|
git tag -a -s -m "$MESSAGE" "$TAG" |
|
else |
|
git tag -a -s "$TAG" |
|
fi |
|
|
|
git push --tags |
|
|
|
./gradlew publishListing |
|
./gradlew publish
|
|
|