gradle-build-action/.github/workflow-samples/no-wrapper-gradle-5/build.gradle

13 lines
266 B
Groovy
Raw Normal View History

plugins {
id "com.gradle.build-scan" version "3.11.4"
}
gradleEnterprise {
buildScan {
termsOfServiceUrl = "https://gradle.com/terms-of-service"
termsOfServiceAgree = "yes"
publishAlways()
uploadInBackground = false
}
}