From 895917cf4b5fc17d7f2e0a397655ba2ac3230533 Mon Sep 17 00:00:00 2001 From: bronsen Date: Thu, 19 Feb 2026 22:55:33 +0100 Subject: [PATCH] just: add recipe for uploading python packages --- justfile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/justfile b/justfile index aba054d..f913cad 100644 --- a/justfile +++ b/justfile @@ -14,6 +14,10 @@ setup: build: uv build --wheel --clear +# upload to Package Registry +upload: build + python -m twine upload --repository code.cbo --config-file ~/.config/pypirc dist/*.whl + # console to observe log messages console: uv run textual console