From 10849adfb8d362236541eec5937ea3fc67af0fac Mon Sep 17 00:00:00 2001 From: Ian Fijolek Date: Wed, 31 Aug 2022 12:45:36 -0700 Subject: [PATCH] Don't worry about verifying tags when pushing to test pypi --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 5ba802d..ba0c878 100644 --- a/Makefile +++ b/Makefile @@ -66,7 +66,7 @@ upload: verify-tag-version build $(ENV)/bin/twine # Uses twine to upload to test pypi .PHONY: upload-test -upload-test: verify-tag-version build $(ENV)/bin/twine +upload-test: build $(ENV)/bin/twine $(ENV)/bin/twine upload --repository-url https://test.pypi.org/legacy/ dist/* # Cleans all build, runtime, and test artifacts