We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
uv publish
1 parent d0e322f commit da5cef2Copy full SHA for da5cef2
1 file changed
justfile
@@ -26,12 +26,11 @@ release:
26
@echo 'Push to GitHub to trigger publish process...'
27
git push --tags
28
29
-# Missing command for uv
30
-# publish:
31
-# poetry publish --build
32
-# git tag "v{{VERSION}}"
33
-# git push --tags
34
-# just clean-builds
+publish:
+ uv build
+ uv publish
+ git push --tags
+ just clean-builds
35
36
clean:
37
find . -name "*.pyc" -print0 | xargs -0 rm -f
0 commit comments