feat: add further stuff to template
Some checks failed
continuous-integration/drone/push Build is failing

Signed-off-by: kjuulh <contact@kjuulh.io>
This commit is contained in:
Kasper Juul Hermansen 2024-03-30 15:41:03 +01:00
parent d16687f0c9
commit 3a54e7c5e3
Signed by: kjuulh
GPG Key ID: 9AA7BC13CE474394

View File

@ -71,7 +71,7 @@ async fn main() -> anyhow::Result<()> {
let mut ctx = tera::Context::new();
for (name, val) in vars {
tracing::debug!("adding value to template: ({}, {})", &name, &val);
ctx.insert(name, val);
ctx.insert(name, &val);
}
let template_data = tera::Tera::one_off(&template_data, &ctx, false)?;