Skip to content

Commit

Permalink
Only use changelogs in release versions
Browse files Browse the repository at this point in the history
  • Loading branch information
duncte123 committed Nov 26, 2023
1 parent 19cf5b1 commit f798ea7
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion plugin/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -91,5 +91,10 @@ githubRelease {
releaseName(verName)
overwrite(false)
prerelease(preRelease)
body(changelog())

if (preRelease) {
body("This is a pre-release version. Please do not use it in production.")
} else {
body(changelog())
}
}

0 comments on commit f798ea7

Please sign in to comment.