From 9d21dfe03223bff2041a55758d878110feebe870 Mon Sep 17 00:00:00 2001 From: Jim Martens Date: Tue, 15 Aug 2023 08:24:17 +0200 Subject: [PATCH] Added scripts to help with nebula releases --- scripts/major.sh | 2 ++ scripts/minor.sh | 2 ++ scripts/patch.sh | 2 ++ 3 files changed, 6 insertions(+) create mode 100755 scripts/major.sh create mode 100755 scripts/minor.sh create mode 100755 scripts/patch.sh diff --git a/scripts/major.sh b/scripts/major.sh new file mode 100755 index 0000000..e4641a2 --- /dev/null +++ b/scripts/major.sh @@ -0,0 +1,2 @@ +#!/usr/bin/env bash +./gradlew -Prelease.scope=major $@ \ No newline at end of file diff --git a/scripts/minor.sh b/scripts/minor.sh new file mode 100755 index 0000000..d1b96ac --- /dev/null +++ b/scripts/minor.sh @@ -0,0 +1,2 @@ +#!/usr/bin/env bash +./gradlew -Prelease.scope=minor $@ diff --git a/scripts/patch.sh b/scripts/patch.sh new file mode 100755 index 0000000..7cf5db9 --- /dev/null +++ b/scripts/patch.sh @@ -0,0 +1,2 @@ +#!/usr/bin/env bash +./gradlew -Prelease.scope=patch $@