2020-10-08 12:04:27 +00:00
|
|
|
private String getCurrentVersionChangelog(String version) {
|
2020-10-08 09:24:34 +00:00
|
|
|
OutputStream changelogDataOS = new ByteArrayOutputStream()
|
|
|
|
exec {
|
2020-10-08 11:09:08 +00:00
|
|
|
commandLine 'chmod', "+x", './changelog_parser.sh'
|
2020-10-08 12:17:12 +00:00
|
|
|
}
|
|
|
|
exec {
|
|
|
|
standardOutput = changelogDataOS
|
2020-10-08 12:04:27 +00:00
|
|
|
commandLine './changelog_parser.sh', "$version", 'CHANGELOG.md'
|
2020-10-08 09:24:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
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')}"
|
|
|
|
|
|
|
|
owner "InsanusMokrassar"
|
|
|
|
repo "${rootProject.name}"
|
|
|
|
|
2022-07-02 12:38:03 +00:00
|
|
|
tagName "v${project.version}"
|
2020-10-08 11:09:08 +00:00
|
|
|
releaseName "${project.version}"
|
|
|
|
targetCommitish "${project.version}"
|
2020-10-08 09:24:34 +00:00
|
|
|
|
2020-10-08 12:04:27 +00:00
|
|
|
body getCurrentVersionChangelog("${project.version}")
|
2020-10-08 09:24:34 +00:00
|
|
|
}
|
|
|
|
}
|