Skip to content

Commit 517f9df

Browse files
committed
fix(ci): remove docker images in linux-arm64
This adds a step to remove the docker images and hopefully free up space in the linux-arm64 part of ci.
1 parent 7341861 commit 517f9df

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

.github/workflows/ci.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,10 @@ jobs:
105105
with:
106106
name: release-packages
107107
path: ./release-packages
108+
- name: Remove docker images
109+
run: |
110+
docker rm $(docker ps -aq)
111+
docker rmi $(docker images -q)
108112
109113
macos-amd64:
110114
needs: release

0 commit comments

Comments
 (0)