From 512682d6331729ce2a2800645d159a8a56e1f3f2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ramiro=20G=C3=B3mez?= Date: Tue, 22 Oct 2024 20:22:35 +0200 Subject: [PATCH] Add release task. --- Makefile | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 13d1dd2..645d3f2 100644 --- a/Makefile +++ b/Makefile @@ -50,4 +50,11 @@ topo-countries: python scripts/topo_countries.py -topo: clean topo-world topo-countries \ No newline at end of file +topo: clean topo-world topo-countries + + +# Call example: make release version=4.0.0 +release: + git tag -a $(version) -m 'Create version $(version)' + git push --tags + npm publish