chore(ci): log disk usage and add aggressive docker system volume prune
Some checks failed
Build & Deploy / 🧪 QA (push) Has been cancelled
Build & Deploy / 🏗️ Build (push) Has been cancelled
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Post-Deploy Verification (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
Build & Deploy / 🔍 Prepare (push) Has been cancelled

This commit is contained in:
2026-05-18 14:42:42 +02:00
parent 313fa14c56
commit c02b49644e

View File

@@ -43,9 +43,16 @@ jobs:
- name: 🧹 Maintenance (High Density Cleanup)
shell: bash
run: |
echo "=== Docker Disk Usage ==="
docker system df || true
df -h || true
echo "Purging old build layers and dangling images..."
docker system prune -a -f
docker system prune -a --volumes -f
docker builder prune -a -f
docker volume prune -f
echo "=== Docker Disk Usage After Prune ==="
docker system df || true
df -h || true
- name: Checkout repository
uses: actions/checkout@v4