File tree Expand file tree Collapse file tree 1 file changed +19
-0
lines changed
build-plugins/build-support/src/main/kotlin/aws/sdk/kotlin/gradle/dsl Expand file tree Collapse file tree 1 file changed +19
-0
lines changed Original file line number Diff line number Diff 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 {
You can’t perform that action at this time.
0 commit comments