We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bbbd153 commit 6365d8aCopy full SHA for 6365d8a
settings.gradle
@@ -19,7 +19,8 @@ gradleEnterprise {
19
buildCache {
20
local { enabled = System.getenv('CI') != 'true' }
21
remote(HttpBuildCache) {
22
- push = System.getenv('CI') == 'true'
+ def isAuthenticated = System.getenv('GRADLE_ENTERPRISE_BUILD_CACHE_NODE_USER') && System.getenv('GRADLE_ENTERPRISE_BUILD_CACHE_NODE_KEY')
23
+ push = System.getenv('CI') == 'true' && isAuthenticated
24
enabled = true
25
url = 'https://ge.grails.org/cache/'
26
credentials {
0 commit comments