Skip to content

Commit

Permalink
create index for benchmark result csv files
Browse files Browse the repository at this point in the history
I have no idea if this will work, but why not?

if you never try stuff, you never live.
  • Loading branch information
isaacs committed Mar 7, 2023
1 parent f12e41c commit 091faf1
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/typedoc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,11 @@ jobs:
run: |
cp -r benchmark/results docs/benchmarks
marked < benchmark/results.md > docs/benchmarks/index.html
echo '<html>' > benchmark/results/index.html
ls benchmark/results | while read f; do
echo '<a href="'$f'">'$f'</a>' >> benchmark/results/index.html
done
echo '</html>' >> benchmark/results/index.html
- name: Setup Pages
uses: actions/configure-pages@v3
- name: Upload artifact
Expand Down

0 comments on commit 091faf1

Please sign in to comment.