Compare commits

..

No commits in common. "746635b570970925f8d8d81c4598a54150ee9f87" and "606ccda721eedee9308c0ddccb9fd0cf80d5800d" have entirely different histories.

View File

@ -11,7 +11,7 @@ BLUR ?= 0
.DEFAULT_GOAL := help .DEFAULT_GOAL := help
.PHONY: help build run up stop down logs log ps test test-mask dev sync shell clean fmt drytestpub testpub bump .PHONY: help build run up stop down logs log ps test test-mask dev sync shell clean fmt testpub bump
help: ## Show this help help: ## Show this help
@grep -E '^[a-zA-Z_-]+:.*?## ' $(MAKEFILE_LIST) \ @grep -E '^[a-zA-Z_-]+:.*?## ' $(MAKEFILE_LIST) \
@ -60,13 +60,8 @@ clean: ## Stop the service and remove build artifacts
bump: ## Bump the patch version in pyproject.toml (0.0.1 -> 0.0.2) bump: ## Bump the patch version in pyproject.toml (0.0.1 -> 0.0.2)
uv version --bump patch uv version --bump patch
drytestpub: ## Publish dist/ to TestPyPI (UV_PUBLISH_TOKEN from .env) testpub: ## Publish dist/ to TestPyPI (UV_PUBLISH_TOKEN from .env)
uv build && \ uv build
set -a && . ./.env && set +a && \ set -a && . ./.env && set +a && \
uv publish --publish-url https://test.pypi.org/legacy/ -t "$$UV_PUBLISH_TOKEN" --dry-run uv publish --publish-url https://test.pypi.org/legacy/ -t "$$UV_PUBLISH_TOKEN" --dry-run
testpub: ## Publish dist/ to TestPyPI (UV_PUBLISH_TOKEN from .env)
uv build && \
set -a && . ./.env && set +a && \
uv publish --publish-url https://test.pypi.org/legacy/ -t "$$UV_PUBLISH_TOKEN"