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 +