Skip to content

Commit f60872e

Browse files
misc: merge from main
2 parents 887125a + 0c92472 commit f60872e

File tree

1 file changed

+19
-0
lines changed
  • build-plugins/build-support/src/main/kotlin/aws/sdk/kotlin/gradle/dsl

1 file changed

+19
-0
lines changed

build-plugins/build-support/src/main/kotlin/aws/sdk/kotlin/gradle/dsl/Publish.kt

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -178,10 +178,29 @@ fun Project.configureJReleaser() {
178178
project {
179179
version = sdkVersion
180180
}
181+
181182
signing {
182183
active = Active.ALWAYS
183184
armored = true
184185
}
186+
187+
// Used for creating a tagged release, uploading files and generating changelogs.
188+
// In the future we can set this up to push release tags to GitHub, but for now it's
189+
// set up to do nothing.
190+
// https://jreleaser.org/guide/latest/reference/release/index.html
191+
release {
192+
generic {
193+
enabled = true
194+
skipRelease = true
195+
}
196+
}
197+
198+
// Used to announce a release to configured announcers.
199+
// https://jreleaser.org/guide/latest/reference/announce/index.html
200+
announce {
201+
active = Active.NEVER
202+
}
203+
185204
deploy {
186205
maven {
187206
mavenCentral {

0 commit comments

Comments
 (0)