We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9b91ab0 commit 89fe4b5Copy full SHA for 89fe4b5
justfile
@@ -24,3 +24,8 @@ tag:
24
echo "Tagging v$bumped ..."
25
git tag "v$bumped"
26
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