Skip to content

Commit b468922

Browse files
Fix sorting of Git configuration list in Action-Test workflow
1 parent 6bb8937 commit b468922

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

.github/workflows/Action-Test.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -44,10 +44,11 @@ jobs:
4444
if ($LASTEXITCODE -ne 0) {
4545
$global:LASTEXITCODE = 0
4646
$configList = $null
47+
} else {
48+
$configList = $configList | Sort-Object
49+
$configList | Get-Member
50+
$configList.GetType()
51+
$configList
4752
}
48-
$configList = $configList | Sort-Object
49-
$configList | Get-Member
50-
$configList.GetType()
51-
$configList
5253
}
5354
}

0 commit comments

Comments
 (0)