Unverified Commit ab846bc4 authored by Ivan Matkov's avatar Ivan Matkov Committed by GitHub

Auto generate release notes (#1099)

Generate release notes like in
https://github.com/JetBrains/skiko/releases/tag/v0.9.25 automatically
parent d736ecf6
...@@ -46,6 +46,7 @@ val createGithubRelease by tasks.registering { ...@@ -46,6 +46,7 @@ val createGithubRelease by tasks.registering {
val repo = gh.getRepository(GITHUB_REPO) val repo = gh.getRepository(GITHUB_REPO)
val release = repo.createRelease("v$githubVersion") val release = repo.createRelease("v$githubVersion")
.name("Version $githubVersion") .name("Version $githubVersion")
.generateReleaseNotes(true)
.commitish(githubCommit) .commitish(githubCommit)
.create() .create()
......
...@@ -14,7 +14,7 @@ pluginManagement { ...@@ -14,7 +14,7 @@ pluginManagement {
dependencies { dependencies {
classpath("org.jetbrains.compose.internal.build-helpers:publishing:0.1.18") classpath("org.jetbrains.compose.internal.build-helpers:publishing:0.1.18")
classpath("org.kohsuke:github-api:1.116") classpath("org.kohsuke:github-api:1.329")
// Added dependency for Android Gradle plugin // Added dependency for Android Gradle plugin
classpath("com.android.tools.build:gradle:7.4.2") classpath("com.android.tools.build:gradle:7.4.2")
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment