File tree Expand file tree Collapse file tree 2 files changed +13
-0
lines changed Expand file tree Collapse file tree 2 files changed +13
-0
lines changed Original file line number Diff line number Diff line change @@ -9323,8 +9323,14 @@ async function main() {
9323
9323
const github = new lib_github.GitHub(token, opts);
9324
9324
let script = Object(core.getInput)('script', { required: true });
9325
9325
const file = Object(core.getInput)('file');
9326
+ Object(core.debug)('------');
9326
9327
Object(core.debug)(script);
9327
9328
Object(core.debug)(file);
9329
+ // @ts-ignore
9330
+ Object(core.debug)(process.env.GITHUB_WORKSPACE);
9331
+ Object(core.debug)(__dirname);
9332
+ Object(core.debug)(__filename);
9333
+ Object(core.debug)('-------');
9328
9334
if (Object(external_fs_.existsSync)(file)) {
9329
9335
Object(core.debug)('Inside try block');
9330
9336
script = Object(external_fs_.readFileSync)(file, 'utf-8');
Original file line number Diff line number Diff line change @@ -19,8 +19,15 @@ async function main() {
19
19
let script = core . getInput ( 'script' , { required : true } )
20
20
const file = core . getInput ( 'file' )
21
21
22
+
23
+ core . debug ( '------' )
22
24
core . debug ( script ) ;
23
25
core . debug ( file ) ;
26
+ // @ts -ignore
27
+ core . debug ( process . env . GITHUB_WORKSPACE )
28
+ core . debug ( __dirname )
29
+ core . debug ( __filename )
30
+ core . debug ( '-------' )
24
31
25
32
if ( existsSync ( file ) ) {
26
33
core . debug ( 'Inside try block' ) ;
You can’t perform that action at this time.
0 commit comments