Skip to content

Commit

Permalink
Merge pull request #2 from block/swipawiwat/publish-scan-ci
Browse files Browse the repository at this point in the history
chore: Always enable scan publishing in CI
  • Loading branch information
wsutina authored Dec 18, 2024
2 parents c28fd70 + c99b73b commit 213d8b3
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@ public abstract class SettingsPlugin : Plugin<Settings> {
}

private fun Settings.shouldPublishBuildScans(): Boolean {
if (System.getenv("CI") == "true") { return true }

val localProperties = Properties()
var publishBuildScans = false

Expand Down

0 comments on commit 213d8b3

Please sign in to comment.