Skip to content

Commit ec940bf

Browse files
committed
fix path to markdown results in benchmarks workflow
The benchmarks script is now run with its working directory set to ur-repo so that the scripts can figure out the commit hash. This means that the output markdown is not stored in a different location.
1 parent 85476e1 commit ec940bf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/benchmarks-reusable.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ jobs:
176176
let markdown = ""
177177
try {
178178
const fs = require('fs');
179-
markdown = fs.readFileSync('benchmark_results.md', 'utf8');
179+
markdown = fs.readFileSync('ur-repo/benchmark_results.md', 'utf8');
180180
} catch(err) {
181181
}
182182

0 commit comments

Comments
 (0)