我是testcontainers-go项目https://github.com/testcontainers/testcontainers-go的当前维护者。
这个项目是一个库。它不会生成任何二进制或docker图像。我仍然希望使用to和GitHub操作来自动化发布过程。
我看了看周围,但我不能找到正确的配置,只运行goreleaser来生成changelog。
你有什么建议吗?非常感谢
发布于 2019-09-03 00:30:33
现在还不是。
但是,您可以使用git生成更改日志
git log --pretty=oneline --abbrev-commit --no-decorate --no-color tags/v1.0.0..tags/v1.1.0这几乎就是GoReleaser在底层做的事情。
发布于 2019-09-03 14:34:57
非常感谢。最后,这是我将使用的命令:
git log $(git describe --abbrev=0)...$(git describe --abbrev=0 $(git describe --abbrev=0 --tags)^) --pretty=format:'* [%s]("http://github.com/testcontainers/testcontainers-go/commit/%H")' --reversehttps://stackoverflow.com/questions/57756096
复制相似问题