Add outputs again

This commit is contained in:
luisito666 2022-10-04 10:08:40 -05:00
parent 5a727517ad
commit 15c2a59c29
3 changed files with 5 additions and 3 deletions

3
dist/index.js generated vendored
View file

@ -359,7 +359,6 @@ class TestReporter {
core.setOutput('failed', failed);
core.setOutput('skipped', skipped);
core.setOutput('time', time);
core.setOutput('runid', this.context.runId);
if (this.failOnError && isFailed) {
core.setFailed(`Failed test were found and 'fail-on-error' option is set to ${this.failOnError}`);
return;
@ -405,6 +404,8 @@ class TestReporter {
core.info(`Check run create response: ${resp.status}`);
core.info(`Check run URL: ${resp.data.url}`);
core.info(`Check run HTML: ${resp.data.html_url}`);
core.setOutput('url', resp.data.url);
core.setOutput('url_html', resp.data.html_url);
return results;
});
}

2
dist/index.js.map generated vendored

File diff suppressed because one or more lines are too long