Skip to content

Commit bafbefb

Browse files
committed
chore: fix nuget env variable name
1 parent 55dbad2 commit bafbefb

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/Build/Commands/Publish.fs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,10 +50,10 @@ type PublishCommand() =
5050

5151
override __.Execute(context, settings) =
5252

53-
let nugetKey = Environment.GetEnvironmentVariable("MOTIVITY_NUGET_KEY")
53+
let nugetKey = Environment.GetEnvironmentVariable("NUGET_KEY")
5454

5555
if isNull nugetKey then
56-
failwithf $"Missing MOTIVITY_NUGET_KEY environment variable"
56+
failwithf $"Missing NUGET_KEY environment variable"
5757

5858
if Git.isDirty () then
5959
failwith "Working directory is dirty, please commit or stash changes before publishing"

0 commit comments

Comments
 (0)