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 00d4fa4 commit 7d38d8e
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions settings.gradle
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
plugins {
id 'com.gradle.develocity' version '3.17.5'
}

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

rootProject.name = 'paparazzi-root'

include ':paparazzi'
Expand Down

0 comments on commit 7d38d8e

Please sign in to comment.