From 502eada21a7115aeddad8a91891844ff01514cb8 Mon Sep 17 00:00:00 2001 From: Jonathan Nobels Date: Fri, 23 Aug 2024 12:38:32 -0400 Subject: [PATCH] makefile: add tag_release recipe (#474) updates #cleanup The tag_release recipe was integrated with bumposs, but it's still needed to manually tag branches such as the release branch. Signed-off-by: Jonathan Nobels --- Makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Makefile b/Makefile index ee0f151..d6d7185 100644 --- a/Makefile +++ b/Makefile @@ -179,6 +179,10 @@ androidpath: @echo "export ANDROID_SDK_ROOT=$(ANDROID_SDK_ROOT)" @echo 'export PATH=$(ANDROID_HOME)/cmdline-tools/latest/bin:$(ANDROID_HOME)/platform-tools:$$PATH' +.PHONY: tag_release +tag_release: ## Tag the current commit with the current version + git tag -a "$(VERSION_LONG)" -m "OSS and Version updated to ${VERSION_LONG}" + .PHONY: bumposs ## Bump to the latest oss and update teh versions. bumposs: update-oss update-version