Skip to content

Commit

Permalink
release_elemental2.sh - Remove "v" tag prefix.
Browse files Browse the repository at this point in the history
Versions have historically not had the "v" prefix. Removing to be consistent.

PiperOrigin-RevId: 550954619
  • Loading branch information
Googler authored and copybara-github committed Jul 25, 2023
1 parent 498812d commit fa6f03b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions maven/release_elemental.sh
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,6 @@ for artifact in ${elemental_artifacts}; do
done

if [[ ${git_tag} == true ]]; then
git tag -a v${lib_version} -m "${lib_version} release"
git push origin v${lib_version}
git tag -a ${lib_version} -m "${lib_version} release"
git push origin ${lib_version}
fi

0 comments on commit fa6f03b

Please sign in to comment.