We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 45f0709 commit 628f332Copy full SHA for 628f332
build/docker/Tasks/DockerManifest.cs
@@ -44,6 +44,9 @@ public override void Run(BuildContext context)
44
{
45
foreach (var group in context.Images.GroupBy(x => new { x.Distro, x.TargetFramework }))
46
47
+ // TODO skip this because of https://github.com/GitTools/GitVersion/pull/3148, remove after .net core 3.1 is removed
48
+ if (group.Key.Distro == Constants.Ubuntu2204 && group.Key.TargetFramework == Constants.Version31) continue;
49
+
50
var amd64DockerImage = group.First(x => x.Architecture == Architecture.Amd64);
51
var arm64DockerImage = group.First(x => x.Architecture == Architecture.Arm64);
52
context.DockerCreateManifest(amd64DockerImage, context.SkipImage(arm64DockerImage));
0 commit comments