Skip to content
This repository has been archived by the owner on Jun 13, 2024. It is now read-only.

Commit

Permalink
πŸ”– release: v3.0.0-alpha.1
Browse files Browse the repository at this point in the history
  • Loading branch information
SigureMo committed Mar 24, 2024
1 parent 9086771 commit 324e1b6
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion justfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION := "2.4.0-alpha.1"
VERSION := "3.0.0-alpha.1"

fmt:
poetry run ruff format .
Expand Down Expand Up @@ -41,6 +41,12 @@ lint:
build:
poetry build

release:
@echo 'Tagging v{{VERSION}}...'
git tag "v{{VERSION}}"
@echo 'Push to GitHub to trigger publish process...'
git push --tags

publish:
poetry publish --build
git tag "v{{VERSION}}"
Expand Down

0 comments on commit 324e1b6

Please sign in to comment.