Skip to content

Commit 175691e

Browse files
🩹 [Patch]: Change Write-Host to Write-Output for consistent output handling in outputs.ps1
1 parent efff0b3 commit 175691e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/outputs.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ try {
3333
}
3434

3535
$result | Format-List
36-
Write-Host "Access outputs using `${{ fromJson(steps.$env:GITHUB_ACTION.outputs.result).<output-name> }}"
36+
Write-Output "Access outputs using `${{ fromJson(steps.$env:GITHUB_ACTION.outputs.result).<output-name> }}"
3737
}
3838
$fenceEnd = '' + ('' * ($fenceStart.Length - 2)) + ''
3939
Write-Output $fenceEnd

0 commit comments

Comments
 (0)