(feat) adding image field to step

This commit is contained in:
tphoney
2021-02-26 14:52:31 +00:00
parent a1030d681a
commit 2f6d747028
3 changed files with 7 additions and 2 deletions

View File

@@ -159,6 +159,7 @@ func (s *Step) GetRunPolicy() runtime.RunPolicy { return s.RunPolicy }
func (s *Step) GetSecretAt(i int) runtime.Secret { return s.Secrets[i] }
func (s *Step) GetSecretLen() int { return len(s.Secrets) }
func (s *Step) IsDetached() bool { return s.Detach }
func (s *Step) GetImage() string { return s.Image }
func (s *Step) Clone() runtime.Step {
dst := new(Step)
*dst = *s