We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 48fbcca commit e500870Copy full SHA for e500870
Makefile
@@ -50,12 +50,12 @@ validate-tag: ## Check to make sure that a tag exists for the current HEAD and i
50
@uv run inv validatetag
51
52
.PHONY: publish-test
53
-publish-test: validatetag build ## Test publishing a release to PyPI.
+publish-test: validate-tag build ## Test publishing a release to PyPI.
54
@echo "🚀 Publishing: Dry run."
55
@uvx twine upload --repository testpypi dist/*
56
57
.PHONY: publish
58
-publish: validatetag build ## Publish a release to PyPI.
+publish: validate-tag build ## Publish a release to PyPI.
59
@echo "🚀 Publishing."
60
@uvx twine upload --repository-url https://upload.pypi.org/legacy/ dist/*
61
0 commit comments