Skip to content

Commit 84123eb

Browse files
committed
fix: update parameter name to customBuildPath
1 parent 5bd51c4 commit 84123eb

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/reusable-build-package.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ jobs:
8181
customParameters: -tag ${{ inputs.tag }} ${{ inputs.custom-parameters }}
8282
unityVersion: ${{ inputs.unity-version }}
8383
projectPath: ${{ inputs.project-path }}
84-
buildsPath: ${{ inputs.builds-path }}
84+
customBuildPath: ${{ inputs.builds-path }}
8585
buildMethod: ${{ inputs.build-method }}
8686

8787
- uses: actions/upload-artifact@v4

Assets/Editor/ArgumentsParser.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@ public static Dictionary<string, string> GetValidatedOptions()
1717
Dictionary<string, string> validatedOptions;
1818
ParseCommandLineArguments(out validatedOptions);
1919

20-
if (!validatedOptions.TryGetValue("buildsPath", out var buildsPath))
20+
if (!validatedOptions.TryGetValue("customBuildPath", out var buildsPath))
2121
{
22-
PrintErrorLog("Please pass a buildsPath to with. buildsPath: build");
22+
PrintErrorLog("Please pass a customBuildPath to with. customBuildPath: build");
2323
}
2424

2525
if (!validatedOptions.TryGetValue("tag", out var tag))

0 commit comments

Comments
 (0)