File tree Expand file tree Collapse file tree 3 files changed +4
-2
lines changed Expand file tree Collapse file tree 3 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 11const fs = require ( "node:fs" ) ;
22const os = require ( "node:os" ) ;
33
4- const { platformDir } = require ( "#cli/bin_path" ) ;
4+ const { platformName } = require ( "#cli/bin_path" ) ;
55
66// Pass artifactDirName to subsequent GitHub actions
77fs . appendFileSync (
88 process . env . GITHUB_ENV ,
9- `artifact_dir_name=${ platformDir } ${ os . EOL } ` ,
9+ `artifact_dir_name=${ platformName } ${ os . EOL } ` ,
1010) ;
Original file line number Diff line number Diff line change @@ -52,6 +52,7 @@ const rescript_editor_analysis_exe = path.join(
5252 */
5353const rewatch_exe = path . join ( platformDir , "rewatch.exe" ) ;
5454
55+ exports . platformName = platformName ;
5556exports . platformDir = platformDir ;
5657exports . bsc_exe = bsc_exe ;
5758exports . ninja_exe = ninja_exe ;
Original file line number Diff line number Diff line change 1717 " lib_dev/*" ,
1818 " scripts/*" ,
1919 " tests/**/input.js" ,
20+ " .github/workflows/*.js" ,
2021 " package.json"
2122 ],
2223 "exclude" : [" *.res.js" , " *.res.mjs" ]
You can’t perform that action at this time.
0 commit comments