mirror of
https://github.com/InsanusMokrassar/PlaguPoster.git
synced 2024-11-04 15:23:46 +00:00
32 lines
839 B
Groovy
32 lines
839 B
Groovy
|
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"
|
||
|
repo "PlaguPoster"
|
||
|
|
||
|
tagName "v${project.version}"
|
||
|
releaseName "${project.version}"
|
||
|
targetCommitish "${project.version}"
|
||
|
|
||
|
body getCurrentVersionChangelog()
|
||
|
}
|
||
|
}
|
||
|
|