From df27780c1e959a75830dc76020ab7eae419308cf Mon Sep 17 00:00:00 2001 From: Daniel Fichtinger Date: Sat, 21 Jun 2025 14:27:03 -0400 Subject: [PATCH] add publish recipe --- justfile | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/justfile b/justfile index 37656df..ca07235 100644 --- a/justfile +++ b/justfile @@ -12,3 +12,10 @@ clean: echo "Removing __pycache__/" rm -r "__pycache__" fi +publish: + #!/bin/sh + just clean + uv build + UV_PUBLISH_TOKEN="$(pass show pypi)" + uv publish +