上下文,在标记发布之前,团队准备一个RELEASE_NOTES.md
文件。我们希望将这个文件的内容作为我们剪切发布后在发布页面上显示的内容。
是否可以通过简单地使用现有文件的内容来自定义 Github 上发布页面的内容?
我看到您可以通过 goreleaser 提供的现有文件对其进行自定义,如https://goreleaser.com/customization/release/#github中所述。有没有可能是cat
一个文件?
上下文,在标记发布之前,团队准备一个RELEASE_NOTES.md
文件。我们希望将这个文件的内容作为我们剪切发布后在发布页面上显示的内容。
是否可以通过简单地使用现有文件的内容来自定义 Github 上发布页面的内容?
我看到您可以通过 goreleaser 提供的现有文件对其进行自定义,如https://goreleaser.com/customization/release/#github中所述。有没有可能是cat
一个文件?
对的,这是可能的。命令中有几个标志goreleaser release
:
--release-footer string Load custom release notes footer from a markdown file
--release-footer-tmpl string Load custom release notes footer from a templated markdown file (overrides --release-footer)
--release-header string Load custom release notes header from a markdown file
--release-header-tmpl string Load custom release notes header from a templated markdown file (overrides --release-header)
--release-notes string Load custom release notes from a markdown file
--release-notes-tmpl string Load custom release notes from a templated markdown file (overrides --release-notes)
你可能想要--release-notes
.