Delete Docker Cache before building Image (#14894)

Co-authored-by: Glenn Jocher <glenn.jocher@ultralytics.com>
This commit is contained in:
Lakshantha Dissanayake 2024-08-01 11:18:58 -07:00 committed by GitHub
parent 9c5d1a2451
commit 9f22f45189
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -82,6 +82,15 @@ jobs:
# tags: "latest-conda"
# platforms: "linux/amd64"
steps:
- name: Cleanup toolcache
# Free up to 10GB of disk space per https://github.com/ultralytics/ultralytics/pull/14894
run: |
echo "Free space before deletion:"
df -h /
rm -rf /opt/hostedtoolcache
echo "Free space after deletion:"
df -h /
- name: Checkout repo
uses: actions/checkout@v4
with: