Skip to content
This repository has been archived by the owner on Jan 10, 2025. It is now read-only.

Commit

Permalink
ci: Fix tag in publish-rust step (#7205)
Browse files Browse the repository at this point in the history
  • Loading branch information
joncinque authored Aug 27, 2024
1 parent f30342f commit 4d14a65
Showing 1 changed file with 1 addition and 1 deletion.
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

0 comments on commit 4d14a65

Please sign in to comment.