From 906cb183b619c647d8aca707db1b7e07e2a8df37 Mon Sep 17 00:00:00 2001 From: Priyagupta108 Date: Wed, 27 May 2026 17:00:14 +0530 Subject: [PATCH] Update RHEL platform handling in build workflow --- .github/workflows/build-python-packages.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-python-packages.yml b/.github/workflows/build-python-packages.yml index 4fc0b88..4edd1ef 100644 --- a/.github/workflows/build-python-packages.yml +++ b/.github/workflows/build-python-packages.yml @@ -55,7 +55,7 @@ jobs: $arch = if ($parts[1]) {$parts[1]} else {"x64"} switch -wildcard ($os) { "*ubuntu*" { $platform = $os.Replace("ubuntu","linux"); if ($arch -eq "arm64" ) { $os = "${os}-arm" } } - "*rhel*" { $platform = $os.Replace("rhel","rhel") } + "*rhel*" { $platform = $os.Replace("rhel","rhel"); $os = $os.Replace("rhel","setup-actions-rhel") } "*macos*" { $platform = 'darwin' } "*windows*" { $platform = 'win32'; if ($arch -eq "arm64" ) { $os = "${os}-arm" } } }