Delete Docker Cache before building Image (#14894)

Co-authored-by: Glenn Jocher <glenn.jocher@ultralytics.com>
pull/10046/head
Lakshantha Dissanayake 4 months ago committed by GitHub
parent 9c5d1a2451
commit 9f22f45189
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 9
      .github/workflows/docker.yaml

@ -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:

Loading…
Cancel
Save