Skip to content

Commit

Permalink
ci: fix published version parsing for beta
Browse files Browse the repository at this point in the history
  • Loading branch information
wangl-cc committed Dec 1, 2023
1 parent 867398d commit 7f97ac5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/scripts/parse_version.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ release_alpha() {

release_beta() {
channel="beta"
published_version=$(yq -oy -r ".details.version" version/$channel.json)
published_version=$(yq -oy -r ".version" version/$channel.json)
published_version_prefix=${published_version%-*}
published_version_suffix=${published_version#*-}
if [ "$published_version_prefix" != "$CARGO_PKG_VERSION" ]; then
Expand Down

0 comments on commit 7f97ac5

Please sign in to comment.