prune release clearing of unused files

This commit is contained in:
2026-07-24 20:06:57 +02:00
parent aa0f7c68bd
commit b37e630cde
+7
View File
@@ -119,6 +119,13 @@ jobs:
echo "image=$IMAGE" >> "$GITHUB_OUTPUT"
echo "lower_repo=$LOWER_REPO" >> "$GITHUB_OUTPUT"
- name: Free up disk space (Cleanup Docker)
run: |
echo "Befreie Speicherplatz..."
docker system prune -a -f --volumes || true
docker buildx prune -a -f || true
sudo find /tmp -maxdepth 1 -name "tmp.*" -exec rm -rf {} +
- name: Ensure Docker CLI is available and up to date
run: |
install_docker=true