mirror of
https://github.com/InsanusMokrassar/krontab.git
synced 2024-10-31 21:43:55 +00:00
29 lines
826 B
Groovy
29 lines
826 B
Groovy
private String getCurrentVersionChangelog() {
|
|
OutputStream changelogDataOS = new ByteArrayOutputStream()
|
|
exec {
|
|
standardOutput = changelogDataOS
|
|
commandLine 'chmod', "+x", './changelog_parser.sh'
|
|
commandLine './changelog_parser.sh', "$library_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"
|
|
repo "${rootProject.name}"
|
|
|
|
tagName "${project.version}"
|
|
releaseName "${project.version}"
|
|
targetCommitish "${project.version}"
|
|
|
|
body getCurrentVersionChangelog()
|
|
}
|
|
}
|