Skip to content

Commit 4a196a7

Browse files
🩹 [Refactor]: Simplify file retrieval in workflow script by removing unnecessary sorting
1 parent b77c1ca commit 4a196a7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

‎.github/workflows/workflow.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ jobs:
205205
$repo = $env:GITHUB_REPOSITORY
206206
$runId = $env:GITHUB_RUN_ID
207207
gh run download $runId --repo $repo --pattern *-TestResults
208-
$files = Get-ChildItem -Path . -Recurse -File | Select-Object -ExpandProperty FullName | Sort-Object
208+
$files = Get-ChildItem -Path . -Recurse -File
209209
$files | Format-Table -AutoSize | Out-String
210210
211211
foreach ($file in $files) {

0 commit comments

Comments
 (0)