Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/reusable-build-package.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ jobs:
customParameters: -tag ${{ inputs.tag }} ${{ inputs.custom-parameters }}
unityVersion: ${{ inputs.unity-version }}
projectPath: ${{ inputs.project-path }}
buildsPath: ${{ inputs.builds-path }}
customBuildPath: ${{ inputs.builds-path }}
buildMethod: ${{ inputs.build-method }}

- uses: actions/upload-artifact@v4
Expand Down
4 changes: 2 additions & 2 deletions Assets/Editor/ArgumentsParser.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ public static Dictionary<string, string> GetValidatedOptions()
Dictionary<string, string> validatedOptions;
ParseCommandLineArguments(out validatedOptions);

if (!validatedOptions.TryGetValue("buildsPath", out var buildsPath))
if (!validatedOptions.TryGetValue("customBuildPath", out var buildsPath))
{
PrintErrorLog("Please pass a buildsPath to with. buildsPath: build");
PrintErrorLog("Please pass a customBuildPath to with. customBuildPath: build");
}

if (!validatedOptions.TryGetValue("tag", out var tag))
Expand Down
Loading