Skip to content

Commit

Permalink
Fix yaml references
Browse files Browse the repository at this point in the history
  • Loading branch information
janboll committed Dec 5, 2024
1 parent 4bfcbfd commit cb5dea6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tooling/templatize/pkg/pipeline/types.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"`
Expand All @@ -36,15 +36,15 @@ type Step struct {
}

type DryRun struct {
Variables []Variable `yaml:"envVars,omitempty"`
Variables []Variable `yaml:"variables,omitempty"`
Command string `yaml:"command,omitempty"`
}

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 {
Expand Down

0 comments on commit cb5dea6

Please sign in to comment.