Skip to content

Commit

Permalink
fix(chore): Fixed docker cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
patfeiler committed Oct 14, 2024
1 parent 07f3319 commit 579ca52
Showing 1 changed file with 10 additions and 7 deletions.
17 changes: 10 additions & 7 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,16 @@ jobs:
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: free disk space
run: |
sudo swapoff -a
sudo rm -f /swapfile
sudo apt clean
docker rmi $(docker images | grep "none" | awk '/ / { print $3 }') || true
df -h
- name: Free Disk Space (Ubuntu)
uses: jlumbroso/free-disk-space@main
with:
tool-cache: false
android: true
dotnet: true
haskell: true
large-packages: true
docker-images: true
swap-storage: true
- name: Pull container base image
run: |
docker compose \
Expand Down

0 comments on commit 579ca52

Please sign in to comment.