We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a57731b commit 43eb269Copy full SHA for 43eb269
.github/workflows/build-image.yml
@@ -23,23 +23,15 @@ jobs:
23
24
steps:
25
- name: Free disk space
26
- run: |
27
- # Free disk space.
28
- echo "::group::Before"
29
- df -h /
30
- echo "::endgroup::"
31
- echo "::group::Removing unneeded softwares and files..."
32
- for DIR in /usr/local/lib/android /usr/share/dotnet /opt/ghc
33
- do
34
- if [ -d "$DIR" ]; then
35
- echo "Removing $DIR..."
36
- sudo rm -r "$DIR"
37
- fi
38
- done
39
40
- echo "::group::After"
41
42
+ uses: jlumbroso/free-disk-space@main
+ with:
+ tool-cache: true
+ android: true
+ dotnet: true
+ haskell: true
+ large-packages: true
+ docker-images: true
+ swap-storage: false
43
44
- name: Prepare
45
id: prep
0 commit comments