File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed
hugoalh.GitHubActionsToolkit Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -555,22 +555,22 @@ function Write-GHActionsAnnotation {
555
555
)
556
556
[hashtable ]$Property = @ {}
557
557
if ($File.Length -gt 0 ) {
558
- $Properties .' file' = $File
558
+ $Property .' file' = $File
559
559
}
560
560
if ($Line -gt 0 ) {
561
- $Properties .' line' = $Line
561
+ $Property .' line' = $Line
562
562
}
563
563
if ($Column -gt 0 ) {
564
- $Properties .' col' = $Column
564
+ $Property .' col' = $Column
565
565
}
566
566
if ($EndLine -gt 0 ) {
567
- $Properties .' endLine' = $EndLine
567
+ $Property .' endLine' = $EndLine
568
568
}
569
569
if ($EndColumn -gt 0 ) {
570
- $Properties .' endColumn' = $EndColumn
570
+ $Property .' endColumn' = $EndColumn
571
571
}
572
572
if ($Title.Length -gt 0 ) {
573
- $Properties .' title' = $Title
573
+ $Property .' title' = $Title
574
574
}
575
575
Write-GHActionsCommand - Command $Type.ToString ().ToLower() - Message $Message - Property $Property
576
576
}
You can’t perform that action at this time.
0 commit comments