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 1d42b95 commit fcedb70Copy full SHA for fcedb70
.github/workflows/docker-images.yml
@@ -76,7 +76,9 @@ jobs:
76
77
# Cleanup
78
- name: Delete huge unnecessary tools folder
79
- run: rm -rf /opt/hostedtoolcache
+ run: |
80
+ cd /opt
81
+ find . -maxdepth 1 -mindepth 1 '!' -path ./containerd '!' -path ./actionarchivecache '!' -path ./runner '!' -path ./runner-cache -exec rm -rf '{}' ';' || true
82
83
# Build and push Docker image with Buildx (don't push on PR)
84
# https://github.com/docker/build-push-action
0 commit comments