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 de54ff0 commit 0ef6aa9
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@ jobs:
${{ runner.os }}-node-
- name: free disk space
run: |
sudo swapoff -a; \
sudo rm -f /swapfile; \
sudo apt clean; \
docker image ls -aq; \
docker image rm $(docker image ls -aq); \
sudo swapoff -a
sudo rm -f /swapfile
sudo apt clean
docker image ls -aq
# docker image rm $(docker image ls -aq)
df -h
- name: Pull container base image
run: |
Expand Down

0 comments on commit 0ef6aa9

Please sign in to comment.