From 2d44137a5eb3b3e7daf8c89d73ecce9816d62c38 Mon Sep 17 00:00:00 2001 From: Bruno Massa Date: Thu, 4 Apr 2024 08:17:27 -0500 Subject: [PATCH] fix: do not start the container creation for windows --- .build.Nuke/Build.GitLab.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/.build.Nuke/Build.GitLab.cs b/.build.Nuke/Build.GitLab.cs index 8a4af32..be8bec9 100644 --- a/.build.Nuke/Build.GitLab.cs +++ b/.build.Nuke/Build.GitLab.cs @@ -162,6 +162,7 @@ sealed partial class Build : NukeBuild /// public Target GitLabPushContainer => td => td .DependsOn(CreateContainer) + .OnlyWhenStatic(() => runtimeIdentifier != "win-x64") .Executes(() => { var tags = ContainerTags(); -- GitLab