@@ -674,21 +674,21 @@ jobs:
674
674
run : |
675
675
$Suffix = if ( "${{ matrix.os }}" -eq "Windows" ) { ".exe" } else { "" }
676
676
$Binaries = @(
677
- "llvm-tblgen${Suffix} ",
678
- "clang-tblgen${Suffix} ",
679
- "lldb-tblgen${Suffix} ",
680
- "llvm-config${Suffix} ",
681
- "clang-pseudo-gen${Suffix} ",
682
- "clang-tidy-confusable-chars-gen${Suffix} ",
683
- "swift-def-to-strings-converter${Suffix} ",
684
- "swift-serialize-diagnostics${Suffix} ",
685
- "swift-compatibility-symbols${Suffix} "
677
+ "llvm-tblgen",
678
+ "clang-tblgen",
679
+ "lldb-tblgen",
680
+ "llvm-config",
681
+ "clang-pseudo-gen",
682
+ "clang-tidy-confusable-chars-gen",
683
+ "swift-def-to-strings-converter",
684
+ "swift-serialize-diagnostics",
685
+ "swift-compatibility-symbols"
686
686
)
687
687
688
688
# Create the target folder.
689
689
New-Item -ItemType Directory -Path "${{ github.workspace }}/BuildRoot/bin" -Force | Out-Null
690
690
foreach ($Binary in $Binaries) {
691
- Copy-Item -Path "${{ github.workspace }}/BinaryCache/0/bin/${Binary}" -Destination "${{ github.workspace }}/BuildRoot/bin/${Binary}" -Force
691
+ Copy-Item -Path "${{ github.workspace }}/BinaryCache/0/bin/${Binary}${Suffix} " -Destination "${{ github.workspace }}/BuildRoot/bin/${Binary}${Suffix }" -Force
692
692
}
693
693
694
694
- uses : thebrowsercompany/gha-upload-tar-artifact@main
0 commit comments