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 5e32f3c commit 6ec1573Copy full SHA for 6ec1573
build_release.sbt
@@ -20,7 +20,12 @@ val generateChangeLog = ReleaseStep(action = st => {
20
21
val addGithubRelease = ReleaseStep(action = st => {
22
st.log.warn("start github release process")
23
- val response = "DEBUG=conventional-github-releaser conventional-github-releaser -p conventionalcommits -r 3 -n ./changelog/config.js || true".!!
+ var response = ""
24
+ try response = "conventional-github-releaser -p conventionalcommits -r 3 -n ./changelog/config.js".!!
25
+ catch {
26
+ case e: Exception =>
27
+ st.log.warn("Catched Exception on generate release notes: " + e.getMessage)
28
+ }
29
st.log.warn("Output of conventional-github-releaser: " + response)
30
st
31
})
0 commit comments