Skip to content

Commit d2f2ff3

Browse files
committed
Avoid changing into submissions folder
1 parent 840cf4a commit d2f2ff3

File tree

1 file changed

+9
-4
lines changed

1 file changed

+9
-4
lines changed

.github/workflows/build-docs.yaml

+9-4
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,15 @@ jobs:
1414
deploy:
1515
runs-on: ubuntu-latest
1616
steps:
17-
- uses: actions/checkout@v4
17+
- name: Check out submissions
18+
uses: actions/checkout@master
1819
with:
1920
fetch-depth: 0
20-
- uses: actions/checkout@master
21+
repository: scicode-bench/submissions
22+
- name: Check out website
23+
uses: actions/checkout@v4
2124
with:
2225
fetch-depth: 0
23-
repository: scicode-bench/submissions
2426
- name: Configure Git Credentials
2527
run: |
2628
git config user.name github-actions[bot]
@@ -39,7 +41,10 @@ jobs:
3941
run: |
4042
curl -LsSf https://astral.sh/uv/install.sh | sh
4143
- name: Installing requirements
42-
run: uv pip install --python ${Python_ROOT_DIR} -r 'requirements.txt'
44+
run: |
45+
pwd
46+
ls
47+
uv pip install --python ${Python_ROOT_DIR} -r 'requirements.txt'
4348
- name: Building leaderboard
4449
run: python leaderboard/create_leaderboard.py --input ../submissions --output docs/leaderboard_table.md
4550
- name: Build Documentation

0 commit comments

Comments
 (0)