mirror of
https://github.com/InsanusMokrassar/TelegramBotAPI.git
synced 2024-11-24 11:08:43 +00:00
add publication of github release via changelog
This commit is contained in:
parent
7043647584
commit
034901a479
3
.gitignore
vendored
3
.gitignore
vendored
@ -8,3 +8,6 @@ settings.xml
|
|||||||
.gradle/
|
.gradle/
|
||||||
build/
|
build/
|
||||||
out/
|
out/
|
||||||
|
|
||||||
|
local.properties
|
||||||
|
secret.gradle
|
||||||
|
@ -44,7 +44,7 @@
|
|||||||
|
|
||||||
### 0.28.3
|
### 0.28.3
|
||||||
|
|
||||||
* Common`:
|
* Common:
|
||||||
* Version updates:
|
* Version updates:
|
||||||
* `Klock`: `0.12.0` -> `0.12.1`
|
* `Klock`: `0.12.0` -> `0.12.1`
|
||||||
* `Kotlin serialization`: `1.0.0-RC` -> `1.0.0-RC2` (dependency `kotlinx-serialization-core` was replaced with
|
* `Kotlin serialization`: `1.0.0-RC` -> `1.0.0-RC2` (dependency `kotlinx-serialization-core` was replaced with
|
||||||
|
48
build.gradle
48
build.gradle
@ -3,12 +3,14 @@ buildscript {
|
|||||||
mavenLocal()
|
mavenLocal()
|
||||||
jcenter()
|
jcenter()
|
||||||
mavenCentral()
|
mavenCentral()
|
||||||
|
maven { url "https://plugins.gradle.org/m2/" }
|
||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
||||||
classpath "org.jetbrains.kotlin:kotlin-serialization:$kotlin_version"
|
classpath "org.jetbrains.kotlin:kotlin-serialization:$kotlin_version"
|
||||||
classpath "com.jfrog.bintray.gradle:gradle-bintray-plugin:$gradle_bintray_plugin_version"
|
classpath "com.jfrog.bintray.gradle:gradle-bintray-plugin:$gradle_bintray_plugin_version"
|
||||||
|
classpath "com.github.breadmoirai:github-release:$github_release_plugin_version"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -16,3 +18,49 @@ plugins {
|
|||||||
id "org.jetbrains.kotlin.multiplatform" version "$kotlin_version" apply false
|
id "org.jetbrains.kotlin.multiplatform" version "$kotlin_version" apply false
|
||||||
id "org.jetbrains.kotlin.plugin.serialization" version "$kotlin_version" apply false
|
id "org.jetbrains.kotlin.plugin.serialization" version "$kotlin_version" apply false
|
||||||
}
|
}
|
||||||
|
|
||||||
|
ext {
|
||||||
|
enable_github_publish=new File(projectDir, "secret.gradle").exists()
|
||||||
|
changelog_from_file=""
|
||||||
|
}
|
||||||
|
|
||||||
|
if (ext.enable_github_publish) {
|
||||||
|
apply from: './secret.gradle'
|
||||||
|
apply plugin: "com.github.breadmoirai.github-release"
|
||||||
|
}
|
||||||
|
|
||||||
|
private String getCurrentVersionChangelog() {
|
||||||
|
OutputStream changelogDataOS = new ByteArrayOutputStream()
|
||||||
|
exec {
|
||||||
|
standardOutput = changelogDataOS
|
||||||
|
commandLine './changelog_info_retriever', "$library_version", 'CHANGELOG.md'
|
||||||
|
}
|
||||||
|
|
||||||
|
return changelogDataOS.toString().trim()
|
||||||
|
}
|
||||||
|
|
||||||
|
if (enable_github_publish && project.hasProperty('GITHUB_RELEASE_TOKEN')) {
|
||||||
|
String changelogFromFile = ""
|
||||||
|
githubRelease {
|
||||||
|
token "${project.property('GITHUB_RELEASE_TOKEN')}"
|
||||||
|
|
||||||
|
owner "InsanusMokrassar"
|
||||||
|
repo "TelegramBotAPI"
|
||||||
|
|
||||||
|
tagName "$library_version"
|
||||||
|
releaseName "$library_version"
|
||||||
|
targetCommitish "$library_version"
|
||||||
|
|
||||||
|
body getCurrentVersionChangelog()
|
||||||
|
}
|
||||||
|
|
||||||
|
// tasks.getByName("githubRelease").doFirst {
|
||||||
|
// OutputStream changelogDataOS = new ByteArrayOutputStream()
|
||||||
|
// exec {
|
||||||
|
// standardOutput = changelogDataOS
|
||||||
|
// commandLine './changelog_info_retriever', "$library_version", 'CHANGELOG.md'
|
||||||
|
// }
|
||||||
|
// changelogFromFile = changelogDataOS.toString().trim()
|
||||||
|
// ext.changelog_from_file = changelogFromFile
|
||||||
|
// }
|
||||||
|
}
|
||||||
|
@ -1,16 +1,29 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
|
function parse() {
|
||||||
|
version=$1
|
||||||
|
|
||||||
|
read -r
|
||||||
|
while [ -z "`echo $REPLY | grep -e "^#\+ $version"`" ]
|
||||||
|
do
|
||||||
|
read -r
|
||||||
|
done
|
||||||
|
|
||||||
|
read -r
|
||||||
|
while [ -z "`echo $REPLY | grep -e "^#\+"`" ]
|
||||||
|
do
|
||||||
|
echo "$REPLY"
|
||||||
|
read -r
|
||||||
|
done
|
||||||
|
}
|
||||||
|
|
||||||
version=$1
|
version=$1
|
||||||
|
file=$2
|
||||||
|
|
||||||
|
if [ -n "$file" ]; then
|
||||||
|
parse $version < "$file"
|
||||||
|
else
|
||||||
|
parse $version
|
||||||
|
fi
|
||||||
|
|
||||||
read -r
|
|
||||||
while [ -z "`echo $REPLY | grep -e "^#\+ $version"`" ]
|
|
||||||
do
|
|
||||||
read -r
|
|
||||||
done
|
|
||||||
|
|
||||||
read -r
|
|
||||||
while [ -z "`echo $REPLY | grep -e "^#\+"`" ]
|
|
||||||
do
|
|
||||||
echo "$REPLY"
|
|
||||||
read -r
|
|
||||||
done
|
|
||||||
|
@ -18,3 +18,4 @@ library_group=com.github.insanusmokrassar
|
|||||||
library_version=0.28.3
|
library_version=0.28.3
|
||||||
|
|
||||||
gradle_bintray_plugin_version=1.8.5
|
gradle_bintray_plugin_version=1.8.5
|
||||||
|
github_release_plugin_version=2.2.12
|
||||||
|
Loading…
Reference in New Issue
Block a user