mirror of
https://github.com/project-zot/zot.git
synced 2024-12-16 21:56:37 -05:00
13 lines
322 B
YAML
13 lines
322 B
YAML
|
name: 'Clean runner'
|
||
|
description: 'Remove unneeded tooling'
|
||
|
runs:
|
||
|
using: "composite"
|
||
|
steps:
|
||
|
- shell: bash
|
||
|
run: |
|
||
|
# To free up ~15 GB of disk space
|
||
|
sudo rm -rf /opt/ghc
|
||
|
sudo rm -rf /usr/local/share/boost
|
||
|
sudo rm -rf /usr/local/lib/android
|
||
|
sudo rm -rf /usr/share/dotnet
|