Add cleanup step to docker workflow to free build agent disk space
Docker Image bauen und veröffentlichen / docker (push) Successful in 2m28s

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
This commit is contained in:
2026-08-14 22:37:53 +02:00
co-authored by Copilot
parent 952a4c9b52
commit 4c0aa053ac
+6
View File
@@ -49,3 +49,9 @@ jobs:
push: true push: true
tags: ${{ steps.meta.outputs.tags }} tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }} labels: ${{ steps.meta.outputs.labels }}
- name: Build-Umgebung aufräumen
if: always()
run: |
docker buildx prune --all --force
docker system prune --all --force --volumes