Skip to content

Commit fcedb70

Browse files
committed
Cleanup files from runner
1 parent 1d42b95 commit fcedb70

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/docker-images.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,9 @@ jobs:
7676
7777
# Cleanup
7878
- name: Delete huge unnecessary tools folder
79-
run: rm -rf /opt/hostedtoolcache
79+
run: |
80+
cd /opt
81+
find . -maxdepth 1 -mindepth 1 '!' -path ./containerd '!' -path ./actionarchivecache '!' -path ./runner '!' -path ./runner-cache -exec rm -rf '{}' ';' || true
8082
8183
# Build and push Docker image with Buildx (don't push on PR)
8284
# https://github.com/docker/build-push-action

0 commit comments

Comments
 (0)