diff --git a/pkg/action/printer.go b/pkg/action/printer.go index 30f46b0ee..abc0ce243 100644 --- a/pkg/action/printer.go +++ b/pkg/action/printer.go @@ -56,6 +56,10 @@ func PrintRelease(out io.Writer, rel *release.Release) { formatTestResults(lastRun.Results)) } + if strings.EqualFold(rel.Info.Description, "Dry run complete") { + fmt.Fprintf(out, "MANIFEST:\n%s\n", rel.Manifest) + } + if len(rel.Info.Notes) > 0 { fmt.Fprintf(out, "NOTES:\n%s\n", strings.TrimSpace(rel.Info.Notes)) }