[sdks/android] Include vcsTag when uploading to bintray.
This commit is contained in:
parent
536d40ad84
commit
d23f2b373a
2 changed files with 4 additions and 1 deletions
|
@ -70,7 +70,7 @@ tasks:
|
|||
&& python automation/taskcluster/release/fetch-bintray-api-key.py
|
||||
&& cd sdks/android/Mentat
|
||||
&& ./gradlew --no-daemon clean library:assembleRelease
|
||||
&& ./gradlew bintrayUpload --debug
|
||||
&& ./gradlew bintrayUpload --debug -PvcsTag={{ event.head.sha }}
|
||||
features:
|
||||
taskclusterProxy: true
|
||||
metadata:
|
||||
|
|
|
@ -91,6 +91,9 @@ ext.configurePublish = { groupIdArg, artifactIdArg, descriptionArg ->
|
|||
desc = descriptionArg
|
||||
websiteUrl = libUrl
|
||||
vcsUrl = libVcsUrl
|
||||
if (project.ext.has('vcsTag')) {
|
||||
vcsTag = project.ext.vcsTag
|
||||
}
|
||||
licenses = [libLicense]
|
||||
publish = true
|
||||
publicDownloadNumbers = true
|
||||
|
|
Loading…
Reference in a new issue