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 37a5e40 commit eb195a0Copy full SHA for eb195a0
.github/workflows/release.yml
@@ -72,6 +72,7 @@ jobs:
72
CTP_BINTRAY_KEY: ${{ secrets.BINTRAY_KEY }}
73
CTP_OSS_USER: ${{ secrets.OSS_USER }}
74
CTP_OSS_SECRET: ${{ secrets.OSS_SECRET }}
75
+ MAVEN_SYNC: "true"
76
SOURCE_TAG: ${{ steps.branch_name.outputs.SOURCE_TAG }}
77
78
- name: Create GH Release
build.gradle
@@ -198,7 +198,7 @@ subprojects { project ->
198
sign = true
199
}
200
mavenCentralSync {
201
- sync = true
+ sync = System.getenv("MAVEN_SYNC") == "true"
202
user = System.getenv('CTP_OSS_USER')
203
password = System.getenv('CTP_OSS_SECRET')
204
0 commit comments