Skip to content

Commit 6d0f25f

Browse files
committed
try to avoid running out of disk space during the builds
1 parent cdb127f commit 6d0f25f

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

.github/workflows/build.yml

+12
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,18 @@ jobs:
88
bake:
99
runs-on: ubuntu-latest
1010
steps:
11+
- name: Free Disk Space (Ubuntu)
12+
uses: jlumbroso/free-disk-space@main
13+
with:
14+
# this might remove tools that are actually needed,
15+
# if set to "true" but frees about 6 GB
16+
tool-cache: true
17+
android: true
18+
dotnet: true
19+
haskell: true
20+
large-packages: true
21+
docker-images: true # we want to re-download freshest layers anyway
22+
swap-storage: true
1123
-
1224
name: Checkout
1325
uses: actions/checkout@v4

0 commit comments

Comments
 (0)