This is an automated email from the ASF dual-hosted git repository.

matrei pushed a commit to branch 7.0.x
in repository https://gitbox.apache.org/repos/asf/grails-doc.git


The following commit(s) were added to refs/heads/7.0.x by this push:
     new ea42503be7 build: update develocity auth (#970)
ea42503be7 is described below

commit ea42503be7b4a24f7d2cddf8d942e69a4d349d33
Author: Mattias Reichel <[email protected]>
AuthorDate: Mon Apr 14 18:11:15 2025 +0200

    build: update develocity auth (#970)
---
 settings.gradle | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/settings.gradle b/settings.gradle
index 3479aad5b5..f3cb9f5c6a 100644
--- a/settings.gradle
+++ b/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-doc')
-        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
     }
 }

Reply via email to