You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Allows users to add additional sections to take advantage of the hooks and provide an activation mechanism using CLI. For example:
# in recipe
setup:
...
my_section:
...
export:
# in steps
my_step:
- on_my_section_init:
...
# using CLI to run only setup and my_section
kameleon build my_recipe --section [setup, my_section]
The text was updated successfully, but these errors were encountered:
We can use these tags to select a subpart of the recipe. For example I tag some steps with !my_steps and than use an option to execute only my tag or the other way around to exclude some tags like:
Allows users to add additional sections to take advantage of the hooks and provide an activation mechanism using CLI. For example:
The text was updated successfully, but these errors were encountered: