diff --git a/.github/actions/clean-disk/action.yml b/.github/actions/clean-disk/action.yml index 2790311..8053347 100644 --- a/.github/actions/clean-disk/action.yml +++ b/.github/actions/clean-disk/action.yml @@ -41,18 +41,19 @@ runs: $(non_manifest_packages) # > /dev/null fi - ( - GLOBIGNORE="/usr/share/git-core/**/*"; - sudo rm -rf \ - /var/lib/docker/ \ - "$AGENT_TOOLSDIRECTORY" \ - /opt \ - /usr/{local,share}/** - ) & - # { - # sudo swapoff -a - # sudo rm -f /mnt/swapfile - # } & + sudo rm -rf \ + /var/lib/docker/ \ + "$AGENT_TOOLSDIRECTORY" \ + /opt \ + /usr/local/** & + + # nix flake update wants to find git-core templates + # /usr/share/git-core/templates + # /usr/share/** + { + sudo swapoff -a + sudo rm -f /mnt/swapfile + } & wait echo "... done"