We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9b19fbe commit 37a5e40Copy full SHA for 37a5e40
.github/workflows/release.yml
@@ -70,6 +70,8 @@ jobs:
70
env:
71
CTP_BINTRAY_USER: ${{ secrets.BINTRAY_USER }}
72
CTP_BINTRAY_KEY: ${{ secrets.BINTRAY_KEY }}
73
+ CTP_OSS_USER: ${{ secrets.OSS_USER }}
74
+ CTP_OSS_SECRET: ${{ secrets.OSS_SECRET }}
75
SOURCE_TAG: ${{ steps.branch_name.outputs.SOURCE_TAG }}
76
77
- name: Create GH Release
build.gradle
@@ -191,6 +191,18 @@ subprojects { project ->
191
vcsUrl = scmHttpsUrl
192
publicDownloadNumbers = true
193
194
+ version {
195
+ name = version
196
+ vcsTag = version
197
+ gpg {
198
+ sign = true
199
+ }
200
+ mavenCentralSync {
201
+ sync = true
202
+ user = System.getenv('CTP_OSS_USER')
203
+ password = System.getenv('CTP_OSS_SECRET')
204
205
206
}
207
208
0 commit comments