Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
yoanm committed Mar 20, 2024
1 parent cc16032 commit 737e4ca
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 11 deletions.
1 change: 0 additions & 1 deletion .github/actions/reports-group/codecov-uploader/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,6 @@ runs:
core.info('Build output');
const {REPORT_NAME, REPORT_FILES, REPORT_FLAGS} = process.env;
const metadata = JSON.parse(METADATA);
core.setOutput('name', REPORT_NAME);
core.setOutput('reports', REPORT_FILES.split(',').join('\n'));
core.setOutput('flags', undefined !== REPORT_FLAGS ? REPORT_FLAGS.split(',').join('\n') : '');
2 changes: 1 addition & 1 deletion .github/actions/reports-group/load-metadata/dist/index.js

Large diffs are not rendered by default.

Large diffs are not rendered by default.

10 changes: 2 additions & 8 deletions .github/actions/reports-group/load-metadata/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,17 +21,11 @@ async function run() {
core.setFailed('Unable to retrieve any group. Something wrong most likely happened !');
}

const res = trustedMetadataPathList.map((trustedGroupPath) => {
return trustedMetadataPathList.map((trustedGroupPath) => {
core.info('Load '+ trustedGroupPath);

const innerRes = trustedPathConverter.trustedMetadataUnder(trustedGroupPath);
core.info('DEBUG innerRes='+JSON.stringify(innerRes));

return innerRes;
return trustedPathConverter.trustedMetadataUnder(trustedGroupPath);
});
core.info('DEBUG res='+JSON.stringify(res));

return res;
}
);
core.debug('Group paths=' + JSON.stringify(trustedMetadataList));
Expand Down

0 comments on commit 737e4ca

Please sign in to comment.