Skip to content

Commit 5e08d7f

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 471c6ff commit 5e08d7f

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/ci.yaml

+5-2
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,7 @@ jobs:
4949
name: test-videos
5050
path: ./test/videos
5151
- name: Remove release packages and test artifacts
52-
run: |
53-
rm -rf ./release-packages ./test/videos
52+
run: rm -rf ./release-packages ./test/videos
5453

5554
release:
5655
runs-on: ubuntu-latest
@@ -105,6 +104,10 @@ jobs:
105104
with:
106105
name: release-packages
107106
path: ./release-packages
107+
- name: Remove docker images
108+
run: |
109+
docker rm $(docker ps -aq)
110+
docker rmi $(docker images -q)
108111
109112
macos-amd64:
110113
needs: release

0 commit comments

Comments
 (0)