From 5a55633bc682607a75916fa402f2ff6e8a5f6e57 Mon Sep 17 00:00:00 2001 From: Bruno Garcia Date: Sat, 23 Nov 2024 19:16:55 -0500 Subject: [PATCH] feat: dotnet publish re-entrant Use --skip-duplicate to allow the job to be retried --- src/targets/nuget.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/targets/nuget.ts b/src/targets/nuget.ts index 0bd48d35..35969b84 100644 --- a/src/targets/nuget.ts +++ b/src/targets/nuget.ts @@ -73,6 +73,7 @@ export class NugetTarget extends BaseTarget { '--api-key', '${NUGET_API_TOKEN}', '--source', + '--skip-duplicate', this.nugetConfig.serverUrl, ]); }