Skip to content

Commit 3326852

Browse files
committed
🔧 chore: add uv publish command
1 parent 22b8f15 commit 3326852

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

Diff for: justfile

+5-6
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,11 @@ release:
2626
@echo 'Push to GitHub to trigger publish process...'
2727
git push --tags
2828

29-
# Missing command for uv
30-
# publish:
31-
# poetry publish --build
32-
# git tag "v{{VERSION}}"
33-
# git push --tags
34-
# just clean-builds
29+
publish:
30+
uv build
31+
uv publish
32+
git push --tags
33+
just clean-builds
3534

3635
clean:
3736
find . -name "*.pyc" -print0 | xargs -0 rm -f

0 commit comments

Comments
 (0)