From 637b1d16f2b919ecb418aa957e51de6b70bc0bd0 Mon Sep 17 00:00:00 2001 From: Tim te Beek Date: Tue, 18 Jun 2024 22:19:46 +0200 Subject: [PATCH] Only publish buildscan if authenticated --- settings.gradle.kts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/settings.gradle.kts b/settings.gradle.kts index da0097cabbe..9712f7662de 100644 --- a/settings.gradle.kts +++ b/settings.gradle.kts @@ -103,6 +103,11 @@ develocity { capture { fileFingerprints = true } + publishing { + onlyIf { + authenticated + } + } uploadInBackground = !isCiServer }