Skip to content

Commit

Permalink
Merge pull request #892 from unoplatform/mergify/bp/release/stable/5.…
Browse files Browse the repository at this point in the history
…3/pr-891

Skip Maui update on Release branch (backport #891)
  • Loading branch information
jeromelaban authored Aug 1, 2024
2 parents 2441e32 + 91d237a commit 88f8c4e
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion tools/Uno.Sdk.Updater/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -291,7 +291,10 @@ static async Task<ManifestGroup> UpdateGroup(ManifestGroup group, NuGetVersion u
Console.WriteLine($"Setting Core group to: {unoVersion.OriginalVersion}");
return group with { Version = unoVersion };
}
else if (group.Packages.Any(x => x.StartsWith("Xamarin")))
// Skip AndroidX packages to avoid Java misalignment
else if (group.Packages.Any(x => x.StartsWith("Xamarin"))
// Skip Maui on Release branch to avoid AndroidX package misalignment
|| (!unoVersion.IsPreview && group.Group == "Maui"))
{
Console.WriteLine("Leaving group as is: " + group.Group);
return group;
Expand Down

0 comments on commit 88f8c4e

Please sign in to comment.