replicated
replicated copied to clipboard
There should be an easy way to pass multiline markdown notes on command line
replicated release create and promote commands take a --release-notes
argument:
--release-notes string When used with --promote <channel>, sets the **markdown** release notes
However this string must be escaped properly in order to work in bash. There has to be an easier way, for example loading release notes from a file. --release-notes-file
parameter could be added.
It's not optimal but I have been getting away with
replicated release create ... --release-notes "$(cat mynotes.md)"
This will fail when the notes get too long. +1 for a --release-notes-file arg.