A few bug fixes for covering corner cases

This commit is contained in:
Ashwin Bharambe 2024-10-07 13:55:01 -07:00
parent a05599c67a
commit 353c7dc82a
4 changed files with 30 additions and 23 deletions

View file

@ -22,7 +22,7 @@ def available_templates_specs() -> List[BuildConfig]:
import yaml
template_specs = []
for p in TEMPLATES_PATH.rglob("*.yaml"):
for p in TEMPLATES_PATH.rglob("*build.yaml"):
with open(p, "r") as f:
build_config = BuildConfig(**yaml.safe_load(f))
template_specs.append(build_config)