fix: remove quotes around interpolated arg values of tags

This commit is contained in:
Ruben Fiszel
2024-05-28 16:56:21 +02:00
parent d4d64973d2
commit 1947abddd4
+2 -1
View File
@@ -2118,7 +2118,8 @@ fn interpolate_args(x: String, args: &PushArgs, workspace_id: &str) -> String {
.get(arg_name)
.or(args.extra.get(arg_name))
.map(|x| x.get())
.unwrap_or_default();
.unwrap_or_default()
.trim_matches('"');
interpolated =
interpolated.replace(format!("$args[{}]", arg_name).as_str(), &arg_value);
}