You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Log.LogError(null,"CONTAINER005","Container.AmbiguousTags",null,0,0,0,0,$"Both{nameof(ContainerImageTag)} and {nameof(ContainerImageTags)} were provided, but only one or the other is allowed.");
Log.LogError(null,"CONTAINER003","Container.InvalidTag",null,0,0,0,0,$"Invalid {nameof(ContainerImageTag)} provided: {{0}}. Image tags must be alphanumeric, underscore, hyphen, or period.",ContainerImageTag);
{Length:1}=>($"Invalid {nameof(ContainerImageTags)} provided: {{0}}. {nameof(ContainerImageTags)} must be a semicolon-delimited list of valid image tags. Image tags must be alphanumeric, underscore, hyphen, or period.",invalids[0]),
117
+
_ =>($"Invalid {nameof(ContainerImageTags)} provided: {{0}}. {nameof(ContainerImageTags)} must be a semicolon-delimited list of valid image tags. Image tags must be alphanumeric, underscore, hyphen, or period.",String.Join(", ",invalids))
Log.LogWarning(null,"CONTAINER001",null,null,0,0,0,0,$"{nameof(ContainerImageName)} was not a valid container image name, it was normalized to {normalizedImageName}");
164
+
Log.LogWarning(null,"CONTAINER001","Container.InvalidImageName",null,0,0,0,0,$"{nameof(ContainerImageName)} was not a valid container image name, it was normalized to {normalizedImageName}");
109
165
NewContainerImageName=normalizedImageName;
110
166
}
111
167
else
@@ -124,7 +180,7 @@ public override bool Execute()
124
180
ParsedContainerImage=outputImage;
125
181
ParsedContainerTag=outputTag;
126
182
NewContainerRegistry=registryToUse;
127
-
NewContainerTag=ContainerImageTag;
183
+
NewContainerTags=validTags;
128
184
129
185
if(BuildEngine!=null)
130
186
{
@@ -133,7 +189,7 @@ public override bool Execute()
0 commit comments