We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a001e22 commit 2ff1b7eCopy full SHA for 2ff1b7e
1 file changed
justfile
@@ -1,5 +1,6 @@
1
VERSION := `toml get Cargo.toml package.version | jq -r`
2
TARGET_DIR := "target/release"
3
+export TAG:=`toml get Cargo.toml "package.version" | jq -r .`
4
5
# List available commands
6
default:
@@ -47,3 +48,9 @@ brew:
47
48
49
bump:
50
cargo workspaces version --no-git-push
51
+
52
+tag:
53
+ #!/usr/bin/env bash
54
+ echo Tagging version v$TAG
55
+ git tag "v$TAG" -f
56
+ git tag | sort -Vr | head
0 commit comments