From 4cb82ea39b34376081e8cc45356c63b1c1d2a40d Mon Sep 17 00:00:00 2001 From: kekkon Date: Fri, 22 Mar 2024 01:01:33 +0100 Subject: [PATCH] fix: Fix build output summary --- .github/workflows/main.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index f024a11..05588a0 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -76,7 +76,7 @@ jobs: foreach ($app in $versionManifest.GetEnumerator()) { $packageVersion = $app.Value.SemVer Write-Output "::debug::Building package " + $app.Key + " with version " + $packageVersion - "Build output for package ${app.Key} with version $packageVersion:`r`n" + '```' | Out-File -FilePath $env:GITHUB_STEP_SUMMARY -Append + "Build output for package ${app.Key} with version ${packageVersion}:`r`n" + '```' | Out-File -FilePath $env:GITHUB_STEP_SUMMARY -Append dotnet build --no-restore $app.Value.Root -c Release --os ${{ matrix.os }} --no-self-contained ` -p:PackageRequireLicenseAcceptance=true ` -p:PackageLicenseFile=LICENSE `