Skip to content

Commit

Permalink
Try with nested directory structure
Browse files Browse the repository at this point in the history
  • Loading branch information
klieret committed Jul 12, 2024
1 parent c5f959f commit a57bdd2
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/build-docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ jobs:
- name: Check out website
uses: actions/checkout@v4
with:
path: website-draft
fetch-depth: 0
- name: Check out submissions
uses: actions/checkout@master
Expand Down Expand Up @@ -57,7 +56,7 @@ jobs:
run: |
tree -d ../../
- name: Building leaderboard
run: python leaderboard/create_leaderboard.py --input ../submissions --output docs/leaderboard_table.md
run: python leaderboard/create_leaderboard.py --input submissions --output docs/leaderboard_table.md
- name: Build Documentation
if: github.ref != 'refs/heads/main'
run: mkdocs build
Expand Down
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,12 @@
## Building it

```bash
pip install -r requirements.txt

# Check out submissions and turn them into table
git clone https://github.com/scicode-bench/submissions.git ../submissions
./leaderboard/create_leaderboard.py --input ../submissions --output docs/leaderboard_table.md

# Preview the website
mkdocs serve
```

0 comments on commit a57bdd2

Please sign in to comment.