From 1ad105d2fe993837a781d4017583e62d41a6a2ad Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Baldeweg?= <56736413+abaldeweg@users.noreply.github.com> Date: Wed, 12 Feb 2025 13:44:44 +0000 Subject: [PATCH] Add additional tags for static, logs_import, and logs_web in Makefile --- Makefile | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/Makefile b/Makefile index 6f71e75..0f48cbd 100644 --- a/Makefile +++ b/Makefile @@ -10,3 +10,12 @@ release: git tag -a gateway/v$(TAG) -m "v$(TAG)" git push origin gateway/v$(TAG) + + git tag -a static/v$(TAG) -m "v$(TAG)" + git push origin static/v$(TAG) + + git tag -a logs_import/v$(TAG) -m "v$(TAG)" + git push origin logs_import/v$(TAG) + + git tag -a logs_web/v$(TAG) -m "v$(TAG)" + git push origin logs_web/v$(TAG)