Skip to content

Commit

Permalink
fix: nuget authors parameter name (#298)
Browse files Browse the repository at this point in the history
  • Loading branch information
benPearce1 authored Mar 6, 2023
1 parent c445c92 commit 16b0f21
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/tasks/PackNuGet/PackNuGetV6/input-parameters.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export const getInputs = (): InputParameters => {
sourcePath: removeTrailingSlashes(safeTrim(tasks.getPathInput("SourcePath"))) || ".",
include: getLineSeparatedItems(tasks.getInput("Include") || "**"),
nuGetDescription: tasks.getInput("NuGetDescription", true) || "",
nuGetAuthors: getLineSeparatedItems(tasks.getInput("NuGetAuthor", true) || ""),
nuGetAuthors: getLineSeparatedItems(tasks.getInput("NuGetAuthors", true) || ""),
nuGetTitle: tasks.getInput("NuGetTitle"),
nuGetReleaseNotes: tasks.getInput("NuGetReleaseNotes"),
nuGetReleaseNotesFile: tasks.getInput("NuGetReleaseNotesFile", false),
Expand Down

0 comments on commit 16b0f21

Please sign in to comment.