Skip to content

Commit

Permalink
Fix typo in NuGet API Key name
Browse files Browse the repository at this point in the history
  • Loading branch information
devlead committed Dec 13, 2021
1 parent fb641a1 commit fce1d5e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.cake
Original file line number Diff line number Diff line change
Expand Up @@ -377,7 +377,7 @@ public record BuildData(
BuildPaths BuildPaths)
{
public string NuGetSource { get; } = System.Environment.GetEnvironmentVariable("NUGET_SOURCE");
public string NuGetApiKey { get; } = System.Environment.GetEnvironmentVariable("NUGET_APIKEY");
public string NuGetApiKey { get; } = System.Environment.GetEnvironmentVariable("NUGET_API_KEY");
public bool ShouldPushNuGetPackages() => IsMainBranch &&
ShouldPublish &&
!string.IsNullOrWhiteSpace(NuGetSource) &&
Expand Down

0 comments on commit fce1d5e

Please sign in to comment.