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 <jonathan@tailscale.com>
pull/481/head
Jonathan Nobels 1 month ago committed by GitHub
parent cdbd062426
commit 502eada21a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -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

Loading…
Cancel
Save