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.
This commit is contained in:
parent
471c6ffd39
commit
5e08d7f853
7
.github/workflows/ci.yaml
vendored
7
.github/workflows/ci.yaml
vendored
@ -49,8 +49,7 @@ jobs:
|
||||
name: test-videos
|
||||
path: ./test/videos
|
||||
- name: Remove release packages and test artifacts
|
||||
run: |
|
||||
rm -rf ./release-packages ./test/videos
|
||||
run: rm -rf ./release-packages ./test/videos
|
||||
|
||||
release:
|
||||
runs-on: ubuntu-latest
|
||||
@ -105,6 +104,10 @@ jobs:
|
||||
with:
|
||||
name: release-packages
|
||||
path: ./release-packages
|
||||
- name: Remove docker images
|
||||
run: |
|
||||
docker rm $(docker ps -aq)
|
||||
docker rmi $(docker images -q)
|
||||
|
||||
macos-amd64:
|
||||
needs: release
|
||||
|
Reference in New Issue
Block a user