Skip to content

The plot thickens

The plot thickens #11

Workflow file for this run

name: Cleaner
on:
push:
branches:
- cleaner-test
# Reference: https://github.com/actions/runner-images/blob/ubuntu22/20231001.1/images/linux/Ubuntu2204-Readme.md
jobs:
cleaner:
name: Cleaner
runs-on: ubuntu-22.04
steps:
- name: Cleaner
run: |
set +eu # don't care about errors, yolo!
set -x
df -h /
docker system prune --all --force >/dev/null &
sudo rm -rf /imagegeneration/installers >/dev/null &
wait
df -h /
# - name: Files
# run: sudo find / -type f -mount > files || true
# - uses: actions/upload-artifact@v3
# with:
# name: files
# path: files