We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cf2c78c commit b049f51Copy full SHA for b049f51
1 file changed
psake.ps1
@@ -148,5 +148,9 @@ Task CI -Depends Package -Description "Run CI task for GitHub Actions" {
148
Write-Host "::notice::Changelog title: $title"
149
Write-Host "::notice::Changelog body: $body"
150
Add-Content -Path $outputFile -Value "changelog_title=$title"
151
- Add-Content -Path $outputFile -Value "changelog_body=$body"
+ # Multiline is tricky: https://docs.github.com/en/actions/reference/workflows-and-actions/workflow-commands#example-of-a-multiline-string
152
+ $EOF = (New-Guid).Guid
153
+ Add-Content -Path $outputFile -Value "changelog_body<<$EOF"
154
+ Add-Content -Path $outputFile -Value "$body"
155
+ Add-Content -Path $outputFile -Value "$EOF"
156
}
0 commit comments