We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e9d3b94 commit fe27430Copy full SHA for fe27430
Commands/PipeScript/Export-PipeScript.ps1
@@ -484,10 +484,8 @@ function Export-Pipescript {
484
$pipeScriptFactor = [Math]::round([double]$TotalOutputFileLength/[double]$TotalInputFileLength,4)
485
486
if ($env:GITHUB_STEP_SUMMARY) {
487
- @(
488
- "<span style='font-size:1em'>$kbIn</span> generated <span style='font-size:$($pipeScriptFactor/ 2)em'>"
489
- "<span style='font-size:$($pipeScriptFactor)em'>PipeScript Factor : $pipeScriptFactor</span>"
490
- ) | Out-File -Append -FilePath $env:GITHUB_STEP_SUMMARY
+ "> ${kbIn}kb Input, ${kbOut}kb : PipeScript Factor: $pipeScriptFactor" |
+ Out-File -Append -FilePath $env:GITHUB_STEP_SUMMARY
491
}
492
493
"$([Math]::Round($TotalInputFileLength / 1kb)) kb input"
0 commit comments