Skip to content

Commit ab6192e

Browse files
authored
fix(ci): Re-add free-disk-space action (#763)
* fix(ci): Re-add free-disk-space action This cleans up some space on the runner to be able to build products which produce a bunch of data during build. This action was present before, but accidentally removed in #733. This now re-adds the action to fix the larger failing builds. * fix: Remove trailing spaces
1 parent 0ff5e25 commit ab6192e

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

.github/actions/build/action.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,22 @@ outputs:
2323
runs:
2424
using: composite
2525
steps:
26+
- name: Free Disk Space (Ubuntu)
27+
uses: jlumbroso/free-disk-space@54081f138730dfa15788a46383842cd2f914a1be # v1.3.1
28+
with:
29+
# This might remove tools that are actually needed, if set to "true" but
30+
# frees about 6 GB.
31+
tool-cache: false
32+
33+
# All of these default to true, but feel free to set to "false" if
34+
# necessary for your workflow.
35+
android: true
36+
dotnet: true
37+
haskell: true
38+
large-packages: true
39+
docker-images: true
40+
swap-storage: true
41+
2642
- name: Setup Docker Buildx
2743
uses: docker/setup-buildx-action@4fd812986e6c8c2a69e18311145f9371337f27d4 # v3.4.0
2844

0 commit comments

Comments
 (0)