Skip to content

Commit

Permalink
fix Nuget Push in build
Browse files Browse the repository at this point in the history
  • Loading branch information
EddieGarmon committed Mar 21, 2022
1 parent 4e50852 commit e78f065
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Build/Build.cs
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ class Build : NukeBuild
GlobFiles(ArtifactsDirectory, "*.nupkg")
.Where(name => !name.EndsWith("symbols.nupkg"))
.ForEach(packageName => DotNetNuGetPush(s => s.SetTargetPath(packageName)
.SetSource(NugetApiKey)
.SetSource(NugetApiUrl)
.SetApiKey(NugetApiKey)
.EnableSkipDuplicate()));
});
Expand Down

0 comments on commit e78f065

Please sign in to comment.