Added scripts to help with nebula releases

This commit is contained in:
Jim Martens 2023-08-15 08:24:17 +02:00
parent e463f0b7a8
commit 9d21dfe032
3 changed files with 6 additions and 0 deletions

2
scripts/major.sh Executable file
View File

@ -0,0 +1,2 @@
#!/usr/bin/env bash
./gradlew -Prelease.scope=major $@

2
scripts/minor.sh Executable file
View File

@ -0,0 +1,2 @@
#!/usr/bin/env bash
./gradlew -Prelease.scope=minor $@

2
scripts/patch.sh Executable file
View File

@ -0,0 +1,2 @@
#!/usr/bin/env bash
./gradlew -Prelease.scope=patch $@