Skip to content
This repository was archived by the owner on Mar 11, 2025. It is now read-only.

ci: Fix tag in publish-rust step #7205

Merged
merged 1 commit into from
Aug 27, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ci/publish-rust.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down