This repository was archived by the owner on May 19, 2022. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +19
-19
lines changed Expand file tree Collapse file tree 1 file changed +19
-19
lines changed Original file line number Diff line number Diff line change @@ -104,6 +104,15 @@ publishing {
104104 }
105105}
106106
107+ githubRelease {
108+ token = project. hasProperty(' githubToken' ) ? project. property(' githubToken' ) : ' '
109+ owner " RediSearch"
110+ repo " spring-redisearch"
111+ releaseAssets distZip, distTar
112+ draft true
113+ body changelog()
114+ }
115+
107116bintray {
108117 user = project. hasProperty(' bintrayUser' ) ? project. property(' bintrayUser' ) : ' '
109118 key = project. hasProperty(' bintrayKey' ) ? project. property(' bintrayKey' ) : ' '
@@ -114,27 +123,18 @@ bintray {
114123 name = project. name
115124 licenses = [' Apache-2.0' ]
116125 vcsUrl = ' https://github.com/RediSearch/spring-redisearch.git'
117- version {
118- gpg {
119- sign = true
120- }
121- mavenCentralSync {
122- sync = true
123- user = project. hasProperty(' ossrhUsername' ) ? project. property(' ossrhUsername' ) : ' '
124- password = project. hasProperty(' ossrhPassword' ) ? project. property(' ossrhPassword' ) : ' '
125- }
126- }
126+ version {
127+ gpg {
128+ sign = true
129+ }
130+ mavenCentralSync {
131+ sync = true
132+ user = project. hasProperty(' ossrhUsername' ) ? project. property(' ossrhUsername' ) : ' '
133+ password = project. hasProperty(' ossrhPassword' ) ? project. property(' ossrhPassword' ) : ' '
134+ }
135+ }
127136 }
128137}
129138
130- githubRelease {
131- token = project. hasProperty(' githubToken' ) ? project. property(' githubToken' ) : ' '
132- owner " RediSearch"
133- repo " spring-redisearch"
134- releaseAssets distZip, distTar
135- draft true
136- body changelog()
137- }
138-
139139afterReleaseBuild. dependsOn " :githubRelease"
140140afterReleaseBuild. dependsOn bintrayUpload
You can’t perform that action at this time.
0 commit comments