Skip to content

Commit b9e8271

Browse files
authored
chore: free disk space in actions (#302)
Signed-off-by: Gaius <[email protected]>
1 parent fde6fc3 commit b9e8271

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

.github/workflows/release.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,22 @@ jobs:
1717
- aarch64-unknown-linux-musl
1818

1919
steps:
20+
- name: Free Disk Space (Ubuntu)
21+
uses: jlumbroso/free-disk-space@main
22+
with:
23+
# this might remove tools that are actually needed,
24+
# if set to "true" but frees about 6 GB
25+
tool-cache: false
26+
27+
# all of these default to true, but feel free to set to
28+
# "false" if necessary for your workflow
29+
android: true
30+
dotnet: true
31+
haskell: true
32+
large-packages: true
33+
docker-images: true
34+
swap-storage: true
35+
2036
- name: Checkout
2137
uses: actions/checkout@v4
2238

0 commit comments

Comments
 (0)