Files
lodestar/scripts/free-disk-space.sh
2020-10-30 11:09:05 +01:00

8 lines
143 B
Bash
Executable File

#!/bin/bash
# For Github Actions - Free disk space
sudo swapoff -a
sudo rm -f /swapfile
sudo apt clean
docker rmi $(docker image ls -aq)
df -h