Skip to content

Commit

Permalink
Merge pull request #26393 from geoand/#26383
Browse files Browse the repository at this point in the history
Fix additional tag handling in container-image-docker
  • Loading branch information
geoand authored Jun 28, 2022
2 parents 8349f71 + 0a7b2eb commit 12c1a91
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ private String createContainerImage(ContainerImageConfig containerImageConfig, D
// If not using buildx, push the images
loginToRegistryIfNeeded(containerImageConfig, containerImageInfo, dockerConfig);

Stream.concat(containerImageInfo.getAdditionalTags().stream(), Stream.of(containerImageInfo.getImage()))
Stream.concat(containerImageInfo.getAdditionalImageTags().stream(), Stream.of(containerImageInfo.getImage()))
.forEach(imageToPush -> pushImage(imageToPush, dockerConfig));
}
}
Expand Down Expand Up @@ -474,4 +474,4 @@ public Path getDockerExecutionPath() {
}
}

}
}

0 comments on commit 12c1a91

Please sign in to comment.