File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -80,10 +80,11 @@ jobs:
8080 targetPlatform : StandaloneLinux64
8181 customParameters : -tag ${{ inputs.tag }} ${{ inputs.custom-parameters }}
8282 unityVersion : ${{ inputs.unity-version }}
83+ projectPath : ${{ inputs.project-path }}
8384 buildsPath : ${{ inputs.builds-path }}
8485 buildMethod : ${{ inputs.build-method }}
8586
8687 - uses : actions/upload-artifact@v4
8788 with :
8889 name : Build-StandaloneLinux64
89- path : ${{ inputs.builds-path }}
90+ path : ${{ inputs.builds-path }}/StandaloneLinux64
Original file line number Diff line number Diff line change @@ -19,8 +19,7 @@ public sealed class PackageExporter
1919 public static void Export ( )
2020 {
2121 var options = ArgumentsParser . GetValidatedOptions ( ) ;
22- var buildPath = options . GetValueOrDefault ( "buildsPath" ) . TrimEnd ( '/' ) ;
23- var exportPath = "./" + ( ! string . IsNullOrEmpty ( buildPath ) ? buildPath + "/" : "" ) + ToExportPath ( _exportPath , options . GetValueOrDefault ( "tag" ) ) ;
22+ var exportPath = "./" + ToExportPath ( _exportPath , options . GetValueOrDefault ( "tag" ) ) ;
2423 Export ( _folderPath , exportPath ) ;
2524 }
2625
You can’t perform that action at this time.
0 commit comments