Skip to content

Commit eb985fc

Browse files
author
Cédric Belin
committed
Fix the "publish" task [skip ci]
1 parent a6cc11f commit eb985fc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build.cake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Task("publish")
2626
.IsDependentOn("default")
2727
.Does(() => DotNetPack("Lcov.slnx", new() { OutputDirectory = "var" }))
2828
.DoesForEach(() => GetFiles("var/*.nupkg"), file => DotNetNuGetPush(file, new() { ApiKey = EnvironmentVariable("NUGET_API_KEY"), Source = "https://api.nuget.org/v3/index.json" }))
29-
.DoesForEach(() => GetFiles("var/*.nupkg"), file => DotNetNuGetPush(file, new() { ApiKey = EnvironmentVariable("GITHUB_TOKEN"), Source = "https://nuget.pkg.github.com/cedx/index.json" }));
29+
.DoesForEach(() => GetFiles("var/*.nupkg"), file => DotNetNuGetPush(file, new() { ApiKey = EnvironmentVariable("GITHUB_TOKEN"), Source = "https://nuget.pkg.github.com/cedx/index.json" }))
3030
.DoesForEach(["tag", "push origin"], action => StartProcess("git", $"{action} v{version}"));
3131

3232
Task("test")

0 commit comments

Comments
 (0)