Add release script

This commit is contained in:
embeddedt 2023-04-25 14:36:52 -04:00
parent adcfed94b7
commit a976cc90fa
No known key found for this signature in database
GPG Key ID: A69433EC199B5613

8
release.sh Executable file
View File

@ -0,0 +1,8 @@
#!/bin/bash
scope="$1"
if [ -z "$scope" ]; then
echo Scope not provided
exit 1
fi
./gradlew pushSemverTag -Psemver.scope=$scope
./gradlew publishToModSites