Skip to content

Commit

Permalink
fix template name
Browse files Browse the repository at this point in the history
  • Loading branch information
JanKaul committed Apr 26, 2024
1 parent 8599b64 commit 2c50ce0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dashtool/src/workflow/template.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ pub(crate) fn singer_template(
) -> Result<IoArgoprojWorkflowV1alpha1Template, Error> {
let template =
TemplateBuilder::default()
.name(Some(node.image.clone()))
.name(Some(node.image.clone().replace(['/', ':', '_', '.'], "-")))
.inputs(Some(
InputsBuilder::default()
.parameters(vec![{
Expand Down

0 comments on commit 2c50ce0

Please sign in to comment.