From b003f0c28349cc831f872bce43c970166a9f2a6a Mon Sep 17 00:00:00 2001 From: Harsh Shandilya Date: Mon, 24 Oct 2022 18:59:47 +0530 Subject: [PATCH] fix(scripts): bring `make-release` up-to-date --- scripts/make-release.sh | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/scripts/make-release.sh b/scripts/make-release.sh index a25ad331..adadda78 100755 --- a/scripts/make-release.sh +++ b/scripts/make-release.sh @@ -10,8 +10,12 @@ git commit -am 'feat(release): bump version' gradle -q collectReleaseApks collectReleaseBundle +git tag -s "v${VERSION}" + gradle -q bumpSnapshot git commit -am 'feat(release): start next development iteration' -gh release create "v${VERSION}" ./android/outputs/* +git push origin main "v${VERSION}" + +gh release create "v${VERSION}" ./android/apk/*.apk ./android/bundle/*.aab