From 746635b570970925f8d8d81c4598a54150ee9f87 Mon Sep 17 00:00:00 2001 From: Michael Pilosov Date: Sat, 16 May 2026 19:21:36 -0600 Subject: [PATCH] dryrun vs real --- Makefile | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index fea0df5..83a6dcd 100644 --- a/Makefile +++ b/Makefile @@ -11,7 +11,7 @@ BLUR ?= 0 .DEFAULT_GOAL := help -.PHONY: help build run up stop down logs log ps test test-mask dev sync shell clean fmt testpub bump +.PHONY: help build run up stop down logs log ps test test-mask dev sync shell clean fmt drytestpub testpub bump help: ## Show this help @grep -E '^[a-zA-Z_-]+:.*?## ' $(MAKEFILE_LIST) \ @@ -60,8 +60,13 @@ clean: ## Stop the service and remove build artifacts bump: ## Bump the patch version in pyproject.toml (0.0.1 -> 0.0.2) uv version --bump patch -testpub: ## Publish dist/ to TestPyPI (UV_PUBLISH_TOKEN from .env) +drytestpub: ## 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" --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" +