Skip to content

Commit

Permalink
Add new scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
chevdor committed Apr 24, 2023
1 parent 89f7c1e commit 8d7fc39
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions justfile
Original file line number Diff line number Diff line change
Expand Up @@ -28,3 +28,12 @@ _clippy:

# Run checks such as clippy, rustfmt, etc...
check: _clippy _fmt

# Create a new tag using the current version
git_tag:
@git tag v{{ VERSION }} -f
@git tag | sort -rn | head

# Push the newly created tag
git_tag_push:
@git push origin v{{ VERSION }} -f

0 comments on commit 8d7fc39

Please sign in to comment.