Skip to content
This repository has been archived by the owner on Apr 27, 2021. It is now read-only.

Commit

Permalink
Update CI tag env variable
Browse files Browse the repository at this point in the history
  • Loading branch information
mattmook committed May 18, 2019
1 parent 11c67f5 commit e383ca9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion android/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ configure<PublishExtension> {
userOrg = "babylonpartners"
groupId = "com.babylon.certificatetransparency"
artifactId = "certificatetransparency-android"
publishVersion = System.getenv("TRAVIS_TAG") ?: System.getProperty("TRAVIS_TAG") ?: "unknown"
publishVersion = System.getenv("CIRCLE_TAG") ?: System.getProperty("CIRCLE_TAG") ?: "unknown"
desc = "Certificate transparency for Android and Java"
website = "https://github.com/Babylonpartners/certificate-transparency-android"

Expand Down
2 changes: 1 addition & 1 deletion lib/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ configure<PublishExtension> {
userOrg = "babylonpartners"
groupId = "com.babylon.certificatetransparency"
artifactId = "certificatetransparency"
publishVersion = System.getenv("TRAVIS_TAG") ?: System.getProperty("TRAVIS_TAG") ?: "unknown"
publishVersion = System.getenv("CIRCLE_TAG") ?: System.getProperty("CIRCLE_TAG") ?: "unknown"
desc = "Certificate transparency for Android and Java"
website = "https://github.com/Babylonpartners/certificate-transparency-android"

Expand Down

0 comments on commit e383ca9

Please sign in to comment.