From 4d14a65c92572daacee4b4923559ef0390b4c5e1 Mon Sep 17 00:00:00 2001 From: Jon C Date: Wed, 28 Aug 2024 00:23:22 +0200 Subject: [PATCH] ci: Fix tag in publish-rust step (#7205) --- ci/publish-rust.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/publish-rust.sh b/ci/publish-rust.sh index ba4560db550..fd42dbdd6fb 100755 --- a/ci/publish-rust.sh +++ b/ci/publish-rust.sh @@ -36,7 +36,7 @@ fi new_version=$(readCargoVariable version "Cargo.toml") package_name=$(readCargoVariable name "Cargo.toml") tag_name="$(echo $package_name | sed 's/spl-//')" -new_git_tag="${tag_name}@v${new_version}" +new_git_tag="${tag_name}-v${new_version}" # Expose the new version to CI if needed. if [[ -n $CI ]]; then