Skip to content

Commit 7dff570

Browse files
committed
wp
1 parent b1d72b0 commit 7dff570

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/build-deps.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -82,10 +82,10 @@ jobs:
8282
with:
8383
dotnet-version: '8.0.x'
8484

85-
-
86-
name: '[Build Docker images]'
87-
shell: pwsh
88-
run: dotnet run/build.dll --target=DockerBuildDeps --dotnet_distro=${{ matrix.distro }} --docker_registry=dockerhub --push_images=${{env.PUSH_IMAGES}}
85+
# -
86+
# name: '[Build Docker images]'
87+
# shell: pwsh
88+
# run: dotnet run/build.dll --target=DockerBuildDeps --dotnet_distro=${{ matrix.distro }} --docker_registry=dockerhub --push_images=${{env.PUSH_IMAGES}}
8989

9090
-
9191
name: Login to GitHub Container Registry

build/build/Tasks/DockerBaseTask.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ protected virtual void DockerImage(BuildContext context, DockerDepsImage dockerI
66
{
77
var buildSettings = GetBuildSettings(dockerImage, context.DockerRegistry);
88

9-
context.DockerBuildXBuild(buildSettings, GetWorkingDir(dockerImage).ToString());
9+
context.DockerBuildXBuild(buildSettings, GetWorkingDir(dockerImage).ToString(), "--annotation \"org.opencontainers.image.description=GitTools build images\"");
1010

1111
var dockerTags = GetDockerTags(dockerImage, context.DockerRegistry, dockerImage.Architecture).ToArray();
1212

@@ -46,7 +46,7 @@ protected virtual DockerBuildXBuildSettings GetBuildSettings(DockerDepsImage doc
4646
Rm = true,
4747
Tag = dockerTags,
4848
Platform = [$"linux/{suffix}"],
49-
Output = ["type=image,oci-mediatypes=true"],
49+
Output = ["type=docker,oci-mediatypes=true"],
5050
Pull = true,
5151
NoCache = true,
5252
/*Label =

0 commit comments

Comments
 (0)