Skip to content

Commit

Permalink
Publish Gradle build scans from CI
Browse files Browse the repository at this point in the history
  • Loading branch information
jrodbx committed Jun 15, 2024
1 parent f229ed9 commit b295857
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions settings.gradle
Original file line number Diff line number Diff line change
@@ -1,15 +1,16 @@
plugins {
id 'com.gradle.develocity' version '3.17'
id 'com.gradle.develocity' version '3.17.5'
}

develocity {
buildScan {
termsOfUseUrl = 'https://gradle.com/terms-of-service'
termsOfUseAgree = 'yes'
publishing {
onlyIf { System.getenv("CI") != "true" }
if (System.getenv('CI') == 'true') {
tag 'CI'
} else {
publishing.onlyIf { false }
}
tag "CI"
}
}

Expand Down

0 comments on commit b295857

Please sign in to comment.