Skip to content

Commit a8772b2

Browse files
committed
ci: Remove checks that are now unnecessary
1 parent 3b401e5 commit a8772b2

File tree

2 files changed

+5
-7
lines changed

2 files changed

+5
-7
lines changed

.utility/bintray-properties.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
ext {
2-
packageName = project.hasProperty('PACKAGE_NAME') ? PACKAGE_NAME : null
3-
libraryName = project.hasProperty('NAME') ? NAME : null
4-
artifact = project.hasProperty('ARTIFACT_ID') ? ARTIFACT_ID : null
5-
libraryDescription = project.hasProperty('DESCRIPTION') ? DESCRIPTION : null
2+
packageName = PACKAGE_NAME
3+
libraryName = NAME
4+
artifact = ARTIFACT_ID
5+
libraryDescription = DESCRIPTION
66
}
77

88
apply from: rootProject.file('.utility/bintray-release.gradle')

.utility/bintray-release.gradle

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,6 @@ apply plugin: 'java-library'
55
apply plugin: 'maven'
66
apply plugin: 'maven-publish'
77

8-
bintrayUpload.onlyIf { packageName && artifact && libraryName && libraryDescription }
9-
108
bintrayUpload.dependsOn assemble
119
bintrayUpload.dependsOn sourcesJar
1210
bintrayUpload.dependsOn javadocJar
@@ -15,7 +13,7 @@ bintray {
1513
user = System.getenv('BINTRAY_USER')
1614
key = System.getenv('BINTRAY_APIKEY')
1715
publications = ['maven']
18-
dryRun = true
16+
dryRun = false
1917
pkg {
2018
repo = 'ibm-cloud-sdk-repo'
2119
name = packageName

0 commit comments

Comments
 (0)