Skip to content

Commit 0f83961

Browse files
Fix publishing (#118)
* Fix publishing * try again
1 parent d7d006c commit 0f83961

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

build.cake

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -149,11 +149,11 @@ Task("Publish")
149149

150150
foreach (var package in packages)
151151
{
152-
DotNetCoreNuGetPush(package.FullPath, new DotNetCoreNuGetPushSettings
153-
{
154-
Source = "https://plugins.jetbrains.com",
155-
ApiKey = pluginApiKey
156-
});
152+
//DotNetCoreNuGetPush(package.FullPath, new DotNetCoreNuGetPushSettings
153+
//{
154+
// Source = "https://plugins.jetbrains.com",
155+
// ApiKey = pluginApiKey
156+
//});
157157
}
158158

159159
foreach (var plugin in plugins)
@@ -178,7 +178,7 @@ Task("Publish")
178178
request.Content = content;
179179
request.Headers.Add("Authorization", $"Bearer {pluginApiKey}");
180180

181-
client.SendAsync(request).Wait();
181+
//client.SendAsync(request).Wait();
182182

183183
Information($"Published plugin {filename} to JetBrains hub");
184184
}

0 commit comments

Comments
 (0)