Skip to content

Commit 01e34b9

Browse files
committed
Revert "Update TeXLive action and remove disk cleanup step"
This reverts commit c3dbd8b.
1 parent c3dbd8b commit 01e34b9

File tree

1 file changed

+14
-2
lines changed

1 file changed

+14
-2
lines changed

.github/workflows/push.yml

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,18 @@ jobs:
2323
runs-on: ubuntu-latest
2424
name: Build project
2525
steps:
26+
- name: Free disk space on runner
27+
run: |
28+
echo "Before cleanup"
29+
df -h
30+
# Remove large preinstalled components we do not need
31+
sudo rm -rf /usr/local/lib/android
32+
sudo rm -rf /usr/share/dotnet
33+
sudo rm -rf /usr/local/graalvm
34+
sudo rm -rf /usr/local/.ghcup || true
35+
echo "After cleanup"
36+
df -h
37+
2638
- name: Checkout project
2739
uses: actions/checkout@v5
2840
with:
@@ -47,9 +59,9 @@ jobs:
4759
run: python3 scripts/upstreaming_dashboard.py
4860

4961
- name: Generate the paper PDF and add it to the website
50-
uses: xu-cheng/texlive-action@475ab07999e9709e524c3708488c8c170d3a6611 # v3
62+
uses: xu-cheng/texlive-action@8268537fedf1198f3ed7000c544bfdbddcbae3b7 # v3
5163
with:
52-
docker_image: ghcr.io/xu-cheng/texlive-full:20250401
64+
docker_image: ghcr.io/xu-cheng/texlive-full:20251002
5365
run: |
5466
cd paper
5567
latexmk -pdf main.tex

0 commit comments

Comments
 (0)