From cb5dea64b5998de424f1f6d01c12e21cb110b89b Mon Sep 17 00:00:00 2001 From: Jan-Hendrik Boll Date: Thu, 5 Dec 2024 12:58:02 +0100 Subject: [PATCH] Fix yaml references --- tooling/templatize/pkg/pipeline/types.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tooling/templatize/pkg/pipeline/types.go b/tooling/templatize/pkg/pipeline/types.go index 3ae773328..a24dcfae4 100644 --- a/tooling/templatize/pkg/pipeline/types.go +++ b/tooling/templatize/pkg/pipeline/types.go @@ -26,7 +26,7 @@ type Step struct { Name string `yaml:"name"` Action string `yaml:"action"` Command string `yaml:"command,omitempty"` - Variables []Variable `yaml:"env,omitempty"` + Variables []Variable `yaml:"variables,omitempty"` Template string `yaml:"template,omitempty"` Parameters string `yaml:"parameters,omitempty"` DependsOn []string `yaml:"dependsOn,omitempty"` @@ -36,7 +36,7 @@ type Step struct { } type DryRun struct { - Variables []Variable `yaml:"envVars,omitempty"` + Variables []Variable `yaml:"variables,omitempty"` Command string `yaml:"command,omitempty"` } @@ -44,7 +44,7 @@ type Variable struct { Name string `yaml:"name"` ConfigRef string `yaml:"configRef,omitempty"` Value string `yaml:"value,omitempty"` - Input *Input `yaml:"inputs,omitempty"` + Input *Input `yaml:"input,omitempty"` } type Input struct {