2021-12-22 08:38:12 +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')}"
|
|
|
|
|
|
|
|
owner "InsanusMokrassar"
|
2022-01-12 09:49:07 +00:00
|
|
|
repo "JSUIKitKBindings"
|
2021-12-22 08:38:12 +00:00
|
|
|
|
2022-07-24 06:09:59 +00:00
|
|
|
tagName "v${project.version}"
|
2021-12-22 08:38:12 +00:00
|
|
|
releaseName "${project.version}"
|
|
|
|
targetCommitish "${project.version}"
|
|
|
|
|
|
|
|
body getCurrentVersionChangelog()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|