From 73c279cb0e2ac3a144c5a19adddb013b1973e9f2 Mon Sep 17 00:00:00 2001 From: Ernesto Rico Schmidt <ernesto@helsinki.at> Date: Sun, 25 Jun 2023 22:25:22 -0400 Subject: [PATCH] fix: remove release make target --- Makefile | 6 ------ 1 file changed, 6 deletions(-) diff --git a/Makefile b/Makefile index 2b5658f1..43563b30 100644 --- a/Makefile +++ b/Makefile @@ -55,9 +55,3 @@ run.prod: migrate collectstatic run.debug: migrate DEBUG=1 $(POETRY_RUN_MANAGE) runserver_plus 0.0.0.0:8000 - -release: VERSION := `$(POETRY_RUN) python -c 'import tomli; print(tomli.load(open("pyproject.toml", "rb"))["tool"]["poetry"]["version"])'` -release: - git tag ${VERSION} - git push origin ${VERSION} - @echo "Release '${VERSION}' tagged and pushed successfully." -- GitLab