File tree 3 files changed +4
-2
lines changed
3 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 1
1
const fs = require ( "node:fs" ) ;
2
2
const os = require ( "node:os" ) ;
3
3
4
- const { platformDir } = require ( "#cli/bin_path" ) ;
4
+ const { platformName } = require ( "#cli/bin_path" ) ;
5
5
6
6
// Pass artifactDirName to subsequent GitHub actions
7
7
fs . appendFileSync (
8
8
process . env . GITHUB_ENV ,
9
- `artifact_dir_name=${ platformDir } ${ os . EOL } ` ,
9
+ `artifact_dir_name=${ platformName } ${ os . EOL } ` ,
10
10
) ;
Original file line number Diff line number Diff line change @@ -52,6 +52,7 @@ const rescript_editor_analysis_exe = path.join(
52
52
*/
53
53
const rewatch_exe = path . join ( platformDir , "rewatch.exe" ) ;
54
54
55
+ exports . platformName = platformName ;
55
56
exports . platformDir = platformDir ;
56
57
exports . bsc_exe = bsc_exe ;
57
58
exports . ninja_exe = ninja_exe ;
Original file line number Diff line number Diff line change 17
17
" lib_dev/*" ,
18
18
" scripts/*" ,
19
19
" tests/**/input.js" ,
20
+ " .github/workflows/*.js" ,
20
21
" package.json"
21
22
],
22
23
"exclude" : [" *.res.js" , " *.res.mjs" ]
You can’t perform that action at this time.
0 commit comments