Disable gradle cache for release builds (#1474)

This commit is contained in:
Islon Scherer
2026-03-26 09:01:52 -07:00
committed by Jen Basch
parent 2c74108a6a
commit 0eb619b387
2 changed files with 35 additions and 15 deletions
+7 -1
View File
@@ -90,7 +90,13 @@ fixed job {
"aarch64"
}
}
catalog.`gradle/actions/setup-gradle@v5`
(catalog.`gradle/actions/setup-gradle@v5`) {
when (isRelease) {
with {
`cache-disabled` = true
}
}
}
...module.steps
}
}