From 90917bbbc3eb4feda2a30a0c70d624a7fa4acdcf Mon Sep 17 00:00:00 2001 From: hsm207 Date: Thu, 1 Feb 2024 00:24:45 +0000 Subject: [PATCH] Revert "add target to tag the main branch" This reverts commit 7edfca3f10842727694011eb7c68e3f126f1c5a2. --- Makefile | 6 ------ 1 file changed, 6 deletions(-) diff --git a/Makefile b/Makefile index 0158c57..ee23d5c 100644 --- a/Makefile +++ b/Makefile @@ -11,12 +11,6 @@ integration_tests: TEST_FILE=tests/integration_tests/ # test: # poetry run pytest $(TEST_FILE) -tag: - git branch | grep '* main' > /dev/null || (echo "You must be on the main branch to create a tag" && exit 1) - $(eval VERSION := $(shell poetry version | cut -d' ' -f2)) - git tag $(VERSION) - git push origin $(VERSION) - update-weaviate-image: $(eval DOCKER_COMPOSE_FILE := tests/docker-compose.yml)