This is an automated email from the ASF dual-hosted git repository. matrei pushed a commit to branch post-gradle-merge in repository https://gitbox.apache.org/repos/asf/grails-core.git
commit 9ea008cc7f6bdd647254d054d158d7be0b131a11 Author: Mattias Reichel <[email protected]> AuthorDate: Wed Apr 16 11:41:18 2025 +0200 build: update develocity auth --- grails-gradle/settings.gradle | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/grails-gradle/settings.gradle b/grails-gradle/settings.gradle index ae62a2e808..165798ad44 100644 --- a/grails-gradle/settings.gradle +++ b/grails-gradle/settings.gradle @@ -5,14 +5,13 @@ plugins { def isCI = System.getenv().containsKey('CI') def isLocal = !isCI -def isAuthenticated = System.getenv().containsKey('GRAILS_DEVELOCITY_ACCESS_KEY') develocity { server = 'https://ge.grails.org' buildScan { tag('grails') tag('grails-gradle-plugins') - publishing.onlyIf { isAuthenticated } + publishing.onlyIf { it.authenticated } uploadInBackground = isLocal } } @@ -20,7 +19,7 @@ develocity { buildCache { local { enabled = isLocal } remote(develocity.buildCache) { - push = isCI && isAuthenticated + push = isCI enabled = true } }
