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 8079d4f commit 2bba0aeCopy full SHA for 2bba0ae
src/targets/nuget.ts
@@ -78,13 +78,13 @@ export class NugetTarget extends BaseTarget {
78
path,
79
'--api-key',
80
'${NUGET_API_TOKEN}',
81
- '--source',
82
// Warning: `--skip-duplicate` means we will NOT error when a version
83
// already exists. This is unlike any other target in Craft but
84
// became needed here as NuGet repo is quite flaky and we need to
85
// publish many packages at once without another way to resume a
86
// broken release.
87
'--skip-duplicate',
+ '--source',
88
this.nugetConfig.serverUrl,
89
];
90
return spawnProcess(NUGET_DOTNET_BIN, args, DOTNET_SPAWN_OPTIONS);
0 commit comments