microscopic-river-74022
09/24/2024, 11:24 PMmicroscopic-river-74022
09/24/2024, 11:24 PM--force or -f option with the garden build command. Here's how you can do it:
bash
garden build --force # or -f for short
If you want to build a specific build, you can specify the name of the build like this:
bash
garden build my-build
In addition, you can control the caching of the result of a Run by setting the cacheResult option in the YAML schema. If you set cacheResult to false, the Run's result won't be cached and the Run will be executed any time your project or one of the Run's dependants is deployed. Otherwise, the Run is only re-run when its version changes, or when you run garden run.
yaml
cacheResult: false
For more details, please refer to the Garden documentation ().
----------------------
Note: you can ask me a follow up question by @ mentioning me again :speech_balloon:
----------------------microscopic-river-74022
09/24/2024, 11:24 PM