Skip to content

Commit

Permalink
fix step summary env var
Browse files Browse the repository at this point in the history
  • Loading branch information
mdekstrand committed Jul 17, 2024
1 parent 4aa4f92 commit 9e580eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utils/coverage-log.tcl
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ if {[info exists env(GITHUB_BASE_REF)]} {

set cov_change [expr {$cur_cov - $prev_cov}]

set sumh [open $env(GITHUB_JOB_SUMMARY) wa]
set sumh [open $env(GITHUB_STEP_SUMMARY) wa]
puts $sumh "Coverage change **$cov_change** (from $prev_cov to $cur_cov).\n"
close $sumh
} elseif {[info exists env(GITHUB_EVENT_NAME)] && [info exists env(GITHUB_TOKEN)]} {
Expand Down

0 comments on commit 9e580eb

Please sign in to comment.