Skip to content

Commit 7cb2ff5

Browse files
create directory
1 parent bb9db83 commit 7cb2ff5

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/benchmarking.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,9 @@ jobs:
7070
- name: Fetch existing benchmarks
7171
run: Rscript -e 'rlang::with_handlers(bench::cb_fetch(), error = function(e) paste("Could not fetch benchmarks, skipping. The error was", conditionMessage(e)))'
7272
- name: Prepare PR comment
73-
run: echo 'Here is how the current PR would change benchmark results:\n' > bench/pr-comment
73+
run: |
74+
mkdir -p bench/pr-comment
75+
echo 'Here is how the current PR would change benchmark results:\n' > bench/pr-comment/info.txt
7476
- name: Run benchmarks
7577
run: Rscript -e 'bench::cb_run()'
7678
- name: Show benchmarks

0 commit comments

Comments
 (0)