Skip to content

Commit

Permalink
fix: Fix multiple strings
Browse files Browse the repository at this point in the history
  • Loading branch information
kekonn committed Mar 22, 2024
1 parent 2dd37a3 commit f370424
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -83,9 +83,9 @@ jobs:
Write-Output "::debug::Decoded version manifest: $versionManifest"
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
dotnet build --no-restore $app.Value.Root -c Release --os ${{ matrix.os }} --no-self-contained `
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
& dotnet build --no-restore $app.Value.Root -c Release --os ${{ matrix.os }} --no-self-contained `
-p:PackageRequireLicenseAcceptance=true `
-p:PackageLicenseFile=LICENSE `
-p:Version=$packageVersion `
Expand Down

0 comments on commit f370424

Please sign in to comment.