Skip to content

Commit

Permalink
Fix tagging scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
chevdor committed Apr 26, 2023
1 parent 9b91ab0 commit 89fe4b5
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions justfile
Original file line number Diff line number Diff line change
Expand Up @@ -24,3 +24,8 @@ tag:
echo "Tagging v$bumped ..."
git tag "v$bumped"
git tag | sort -Vr | head -n10
tag_push:
#!/usr/bin/env bash
latest=$(git tag | sort -Vr | head -n1)
git push origin $latest

0 comments on commit 89fe4b5

Please sign in to comment.