Skip to content

Commit

Permalink
refactor(step): include version to image name
Browse files Browse the repository at this point in the history
  • Loading branch information
tunahanertekin committed May 25, 2023
1 parent e9e7119 commit fa4999f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/api/step.go
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ func (step *Step) Default(lc LaunchConfig) {
}

func (step *Step) setImageName(lc LaunchConfig) {
step.Image.Name = lc.Registry + "/" + lc.Organization + "/" + step.Image.Repository + ":" + step.Image.Tag
step.Image.Name = lc.Registry + "/" + lc.Organization + "/" + step.Image.Repository + ":" + step.Image.Tag + "-" + lc.Version
}

func (step *Step) setContext(lc LaunchConfig) {
Expand Down

0 comments on commit fa4999f

Please sign in to comment.