From 15091be3e671e80236bead7c338ece6ec2d577d5 Mon Sep 17 00:00:00 2001 From: Casey Rodarmor Date: Tue, 3 Sep 2024 18:24:22 -0700 Subject: [PATCH] Use correct version tag --- justfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/justfile b/justfile index cea8500..aa0b109 100644 --- a/justfile +++ b/justfile @@ -82,7 +82,7 @@ publish: cd tmp/release cargo build cargo run --package gen -- --bin target/debug/imdl all - VERSION=`sed -En 's/version[[:space:]]*=[[:space:]]*"([^"]+)"/\1/p' Cargo.toml | head -1` + VERSION=v`sed -En 's/version[[:space:]]*=[[:space:]]*"([^"]+)"/\1/p' Cargo.toml | head -1` git tag -a $VERSION -m "Release $VERSION" git push origin $VERSION cargo publish