Skip to content

Commit

Permalink
build: add new build tasks
Browse files Browse the repository at this point in the history
  • Loading branch information
Elijas committed Dec 15, 2023
1 parent bb3013c commit 6126cb9
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions Taskfile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,11 @@ tasks:
cmds:
- poetry run cz bump {{.CLI_ARGS}}

version-bump-and-push: # Increment the version number and push the latest tag to remote.
cmds:
- task: version-bump
- git push origin $(git describe --tags `git rev-list --tags --max-count=1`)

update-dependencies:
cmds:
- poetry update
Expand Down Expand Up @@ -188,3 +193,11 @@ tasks:
a: # You can just run `task a` instead of `task accuracy-tests`.
deps:
- accuracy-tests

v: # You can just run `task v` instead of `task version-bump`.
deps:
- version-bump

vv: # You can just run `task vv` instead of `task version-bump-and-push`.
deps:
- version-bump-and-push

0 comments on commit 6126cb9

Please sign in to comment.