From b904eaafd1c0dfa5d752581f7ff099e338cb3bdc Mon Sep 17 00:00:00 2001 From: 13xforever Date: Tue, 10 Jun 2025 21:11:43 +0500 Subject: [PATCH] fix mac arm build links for pr --- Clients/GithubClient/Client.CI.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Clients/GithubClient/Client.CI.cs b/Clients/GithubClient/Client.CI.cs index 9bc4aaca..b99012eb 100644 --- a/Clients/GithubClient/Client.CI.cs +++ b/Clients/GithubClient/Client.CI.cs @@ -246,7 +246,8 @@ public partial class Client using var zipStream = ReaderFactory.Open(stream); while (zipStream.MoveToNextEntry() && !cancellationToken.IsCancellationRequested) { - if (zipStream.Entry.Key?.EndsWith(".dmg", StringComparison.OrdinalIgnoreCase) is true) + if (zipStream.Entry.Key?.EndsWith(".dmg", StringComparison.OrdinalIgnoreCase) is true + || zipStream.Entry.Key?.EndsWith(".7z", StringComparison.OrdinalIgnoreCase) is true) { result = result with { MacArmFilename = Path.GetFileName(zipStream.Entry.Key) }; break;