From a20894a93d6aa4f8be364614bd2e1537ae10ee3f Mon Sep 17 00:00:00 2001 From: AraHaan Date: Wed, 19 May 2021 10:26:42 -0400 Subject: [PATCH] Add SOLUTION_FILE_PATH and PACKAGE_PATH. --- action.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/action.yml b/action.yml index 9dc71b2..ec448ae 100644 --- a/action.yml +++ b/action.yml @@ -3,9 +3,15 @@ author: Rohith Reddy (@rohith) description: Build, Pack & Publish a NuGet package with dotnet core on project version change inputs: + SOLUTION_FILE_PATH: + description: Filepath of the solution of which contains all the projects to be packed, relative to root of repository + required: true PROJECT_FILE_PATH: description: Filepath of the project to be packaged, relative to root of repository required: true + PACKAGE_PATH: + description: Path to store all generated nuget packages, relative to root of repository + required: true PACKAGE_NAME: description: NuGet package id, used for version detection & defaults to project name required: false @@ -61,4 +67,4 @@ runs: branding: icon: package - color: blue \ No newline at end of file + color: blue