File tree Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -118,5 +118,5 @@ jobs:
118118
119119      - uses : actions/upload-artifact@v4 
120120        with :
121-           name : Build-StandaloneLinux64 
121+           name : ${{ steps.path-normalizer.outputs.normalized-package-name }} 
122122          path : ${{ steps.path-normalizer.outputs.export-path }} 
Original file line number Diff line number Diff line change @@ -18,7 +18,13 @@ public static void Export()
1818    { 
1919        var  options  =  ArgumentsParser . GetValidatedOptions ( ) ; 
2020        var  buildPath  =  options . GetValueOrDefault ( "customBuildPath" ) ; 
21-         buildPath  =  buildPath ? . Replace ( "/github/workspace/" ,  "./" ) ; 
21+         
22+         var  workspaceDir  =  Environment . GetEnvironmentVariable ( "GITHUB_WORKSPACE" ) ; 
23+         if  ( ! string . IsNullOrEmpty ( workspaceDir ) ) 
24+         { 
25+             buildPath  =  buildPath . Replace ( $ "{ workspaceDir } /",  "./" ) ; 
26+         } 
27+         
2228        Export ( _folderPath ,  buildPath ) ; 
2329    } 
2430
 
 
   
 
     
   
   
          
    
    
     
    
      
     
     
    You can’t perform that action at this time.
  
 
    
  
    
      
        
     
       
      
     
   
 
    
    
  
 
  
 
     
    
0 commit comments