Skip to content

Commit a358ba5

Browse files
committed
build: Add release just task
1 parent 4bb6907 commit a358ba5

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

justfile

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,3 +37,10 @@ pyright *args: (poetry "run" "pyright" "pydantic_async_validation" args)
3737
lint: ruff pyright
3838

3939
publish: (poetry "publish" "--build")
40+
41+
release version: (poetry "version" version)
42+
git add pyproject.toml
43+
git commit -m "release: 🔖 v$(poetry version --short)" --no-verify
44+
git tag "v$(poetry version --short)"
45+
git push
46+
git push --tags

0 commit comments

Comments
 (0)