summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--settings.gradle.kts2
1 files changed, 1 insertions, 1 deletions
diff --git a/settings.gradle.kts b/settings.gradle.kts
index e6e6e4e2..38359aba 100644
--- a/settings.gradle.kts
+++ b/settings.gradle.kts
@@ -21,9 +21,9 @@ gradleEnterprise {
buildScan {
termsOfServiceUrl = "https://gradle.com/terms-of-service"
termsOfServiceAgree = "yes"
+ publishAlways()
val isCIBuild = !System.getenv("CI").isNullOrEmpty()
- publishAlwaysIf(isCIBuild)
tag(if (isCIBuild) "CI" else "local")
val isGithubActionsBuild = !System.getenv("GITHUB_ACTIONS").isNullOrEmpty()
bgstack15