Disable gradle cache for release builds (#1474)

This commit is contained in:
Islon Scherer
2026-03-26 16:54:10 +01:00
committed by Jen Basch
parent 2c74108a6a
commit 0eb619b387
2 changed files with 35 additions and 15 deletions

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
}
}