summaryrefslogtreecommitdiff
path: root/settings.gradle.kts
diff options
context:
space:
mode:
authorJoffrey Bion <joffrey.bion@gmail.com>2023-07-05 15:54:17 +0200
committerJoffrey Bion <joffrey.bion@gmail.com>2023-07-05 15:59:54 +0200
commit4e94b29322bb0b8a8f61ab60f998935c0206b36c (patch)
treef88b49805834b56c0440aee39196fad136e0e6c7 /settings.gradle.kts
parentPrevent the creation of empty versions.properties files (diff)
downloadseven-wonders-4e94b29322bb0b8a8f61ab60f998935c0206b36c.tar.gz
seven-wonders-4e94b29322bb0b8a8f61ab60f998935c0206b36c.tar.bz2
seven-wonders-4e94b29322bb0b8a8f61ab60f998935c0206b36c.zip
Always publish build scans
Diffstat (limited to 'settings.gradle.kts')
-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