Skip to content

Commit e500870

Browse files
committed
Fixed bug in how "make publish" called "validate-tag" rule
1 parent 48fbcca commit e500870

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,12 +50,12 @@ validate-tag: ## Check to make sure that a tag exists for the current HEAD and i
5050
@uv run inv validatetag
5151

5252
.PHONY: publish-test
53-
publish-test: validatetag build ## Test publishing a release to PyPI.
53+
publish-test: validate-tag build ## Test publishing a release to PyPI.
5454
@echo "🚀 Publishing: Dry run."
5555
@uvx twine upload --repository testpypi dist/*
5656

5757
.PHONY: publish
58-
publish: validatetag build ## Publish a release to PyPI.
58+
publish: validate-tag build ## Publish a release to PyPI.
5959
@echo "🚀 Publishing."
6060
@uvx twine upload --repository-url https://upload.pypi.org/legacy/ dist/*
6161

0 commit comments

Comments
 (0)