Skip to content

Commit a57bdd2

Browse files
committed
Try with nested directory structure
1 parent c5f959f commit a57bdd2

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

.github/workflows/build-docs.yaml

+1-2
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ jobs:
1717
- name: Check out website
1818
uses: actions/checkout@v4
1919
with:
20-
path: website-draft
2120
fetch-depth: 0
2221
- name: Check out submissions
2322
uses: actions/checkout@master
@@ -57,7 +56,7 @@ jobs:
5756
run: |
5857
tree -d ../../
5958
- name: Building leaderboard
60-
run: python leaderboard/create_leaderboard.py --input ../submissions --output docs/leaderboard_table.md
59+
run: python leaderboard/create_leaderboard.py --input submissions --output docs/leaderboard_table.md
6160
- name: Build Documentation
6261
if: github.ref != 'refs/heads/main'
6362
run: mkdocs build

README.md

+7
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,12 @@
33
## Building it
44

55
```bash
6+
pip install -r requirements.txt
67

8+
# Check out submissions and turn them into table
9+
git clone https://github.com/scicode-bench/submissions.git ../submissions
10+
./leaderboard/create_leaderboard.py --input ../submissions --output docs/leaderboard_table.md
11+
12+
# Preview the website
13+
mkdocs serve
714
```

0 commit comments

Comments
 (0)