Skip to content

Commit

Permalink
Updated as per review comments
Browse files Browse the repository at this point in the history
  • Loading branch information
nbhoski committed Jun 26, 2024
1 parent b83d97c commit 4cd6195
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/buildSummary.ts
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ export function writeSummary(taskSummaryTableRows: string[][]) {

export async function processAndDisplayBuildSummary() {
const runId = process.env.GITHUB_RUN_ID;
const runnerTemp = process.env.RUNNER_TEMP;
let filePath: string;

if (!runId) {
Expand All @@ -69,7 +70,6 @@ export async function processAndDisplayBuildSummary() {
}

try {
const runnerTemp = process.env.RUNNER_TEMP;
const data = await readJsonFile(filePath);
const taskSummaryTableRows = getBuildSummaryTable(data);
writeSummary(taskSummaryTableRows);
Expand Down

0 comments on commit 4cd6195

Please sign in to comment.