From 15d9ceb5ca8f25e9dc9acd53b6c58551a013eadd Mon Sep 17 00:00:00 2001 From: SigureMo Date: Sat, 12 Oct 2024 23:38:30 +0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20chore:=20add=20`release`=20comma?= =?UTF-8?q?nd?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- justfile | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/justfile b/justfile index e3f0185..09fea97 100644 --- a/justfile +++ b/justfile @@ -20,6 +20,12 @@ fmt-docs: build: uv build +release: + @echo 'Tagging v{{VERSION}}...' + git tag "v{{VERSION}}" + @echo 'Push to GitHub to trigger publish process...' + git push --tags + publish: uv build uv publish