Skip to content

Commit a4ae13c

Browse files
Refactor Action-Test workflow to use PSCustomObject for Git configuration storage
1 parent 7c0afd5 commit a4ae13c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/Action-Test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,11 +49,11 @@ jobs:
4949
$configList = $configList | Sort-Object
5050
$configList | ForEach-Object {
5151
$name, $value = $_ -split '='
52-
$config += @{
52+
$config += [pscustomobject]@{
5353
$name = $value
5454
}
5555
}
56-
$config | Select-Object Name,Value | Format-List
56+
$config | Format-List
5757
}
5858
}
5959
}

0 commit comments

Comments
 (0)