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 beac60e commit 9cd21f6Copy full SHA for 9cd21f6
build.cake
@@ -136,15 +136,11 @@ Task("Create-Release-Notes")
136
RedirectStandardOutput = true
137
},
138
out redirectedOutput);
139
+ Information(string.Join("\n"m redirectedOutput));
140
141
if (!System.IO.File.Exists("./build/releasenotes.md") || string.IsNullOrEmpty(System.IO.File.ReadAllText("./build/releasenotes.md"))) {
142
System.IO.File.WriteAllText("./build/releasenotes.md", "No issues closed since last release");
143
}
-
144
- if (releaseNotesExitCode != 0) {
145
- throw new Exception("Failed to generate release notes:" +
146
- string.Join("\n", redirectedOutput));
147
- }
148
149
else
150
{
0 commit comments