We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 744d810 commit 58c0d96Copy full SHA for 58c0d96
.github/workflows/publish.yml
@@ -84,8 +84,8 @@ jobs:
84
docker system prune -af
85
# Remove all unused build cache
86
docker builder prune -af
87
- # Optional: If you need more aggressive cleanup
88
- rm -rf /tmp/*
+ # Clean only user-owned files in /tmp, ignore permission errors
+ find /tmp -type f -user $(id -u) -exec rm -f {} + 2>/dev/null || true
89
90
- name: Extract metadata for Docker
91
id: meta
0 commit comments