diff --git a/dist/post_run/index.js b/dist/post_run/index.js index b763eef..d6eba72 100644 --- a/dist/post_run/index.js +++ b/dist/post_run/index.js @@ -90902,6 +90902,7 @@ const printOutputAndForwardJSON = (s) => { for (const line of lines) { if (line.startsWith(`::`)) { core.info(line); + continue; } try { JSON.parse(line); diff --git a/dist/run/index.js b/dist/run/index.js index 79e746a..696fc58 100644 --- a/dist/run/index.js +++ b/dist/run/index.js @@ -90902,6 +90902,7 @@ const printOutputAndForwardJSON = (s) => { for (const line of lines) { if (line.startsWith(`::`)) { core.info(line); + continue; } try { JSON.parse(line); diff --git a/src/run.ts b/src/run.ts index ae8514e..7efbff8 100644 --- a/src/run.ts +++ b/src/run.ts @@ -108,6 +108,7 @@ const printOutputAndForwardJSON = (s: string): void => { for (const line of lines) { if (line.startsWith(`::`)) { core.info(line) + continue } try {