Skip to content

Commit 89fe4b5

Browse files
committed
Fix tagging scripts
1 parent 9b91ab0 commit 89fe4b5

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

justfile

+5
Original file line numberDiff line numberDiff line change
@@ -24,3 +24,8 @@ tag:
2424
echo "Tagging v$bumped ..."
2525
git tag "v$bumped"
2626
git tag | sort -Vr | head -n10
27+
28+
tag_push:
29+
#!/usr/bin/env bash
30+
latest=$(git tag | sort -Vr | head -n1)
31+
git push origin $latest

0 commit comments

Comments
 (0)