Skip to content

Commit

Permalink
tagging to latest complains that tag.from.name is required
Browse files Browse the repository at this point in the history
  • Loading branch information
BraisVQ authored Jan 20, 2025
1 parent 4836a29 commit c6f60e9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/org/ods/services/OpenShiftService.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,7 @@ class OpenShiftService {

void setImageTag(String project, String name, String sourceTag, String destinationTag) {
steps.sh(
script: "oc -n ${project} tag ${name}:${sourceTag} ${name}:${destinationTag}",
script: "oc -n ${project} tag ${project}/${name}:${sourceTag} ${project}/${name}:${destinationTag}",
label: "Set tag ${destinationTag} on is/${name}"
)
}
Expand Down

0 comments on commit c6f60e9

Please sign in to comment.