2020-11-12 06:03:33 +00:00
|
|
|
private String getCurrentVersionChangelog() {
|
|
|
|
OutputStream changelogDataOS = new ByteArrayOutputStream()
|
|
|
|
exec {
|
|
|
|
commandLine 'chmod', "+x", './changelog_parser.sh'
|
|
|
|
}
|
|
|
|
exec {
|
|
|
|
standardOutput = changelogDataOS
|
|
|
|
commandLine './changelog_parser.sh', "${project.version}", 'CHANGELOG.md'
|
|
|
|
}
|
|
|
|
|
|
|
|
return changelogDataOS.toString().trim()
|
|
|
|
}
|
|
|
|
|
|
|
|
if (new File(projectDir, "secret.gradle").exists()) {
|
|
|
|
apply from: './secret.gradle'
|
|
|
|
apply plugin: "com.github.breadmoirai.github-release"
|
|
|
|
|
|
|
|
githubRelease {
|
|
|
|
token "${project.property('GITHUB_RELEASE_TOKEN')}"
|
|
|
|
|
2020-11-12 07:01:58 +00:00
|
|
|
releaseAssets.from('bot/build/distributions')
|
|
|
|
|
2024-04-23 12:44:26 +00:00
|
|
|
owner = "InsanusMokrassar"
|
|
|
|
repo = "PlaguBot"
|
2020-11-12 06:03:33 +00:00
|
|
|
|
2024-04-23 12:44:26 +00:00
|
|
|
tagName = "v${project.version}"
|
|
|
|
releaseName = "${project.version}"
|
|
|
|
targetCommitish = "${project.version}"
|
2020-11-12 06:03:33 +00:00
|
|
|
|
2024-04-23 12:44:26 +00:00
|
|
|
body = getCurrentVersionChangelog()
|
2020-11-12 06:03:33 +00:00
|
|
|
}
|
|
|
|
}
|