mirror of
https://github.com/stefanprodan/podinfo.git
synced 2026-05-26 19:32:49 +00:00
25 lines
627 B
YAML
25 lines
627 B
YAML
name: Runner Cleanup
|
|
description: A GitHub Action for removing bloat from Ubuntu GitHub Actions runner.
|
|
author: Stefan Prodan
|
|
branding:
|
|
color: blue
|
|
icon: command
|
|
runs:
|
|
using: composite
|
|
steps:
|
|
- name: "Disk Usage Before Cleanup"
|
|
shell: bash
|
|
run: |
|
|
df -h
|
|
- name: "Remove .NET, Android and Haskell"
|
|
shell: bash
|
|
run: |
|
|
sudo rm -rf /usr/share/dotnet || true
|
|
sudo rm -rf /usr/local/lib/android || true
|
|
sudo rm -rf /opt/ghc || true
|
|
sudo rm -rf /usr/local/.ghcup || true
|
|
- name: "Disk Usage After Cleanup"
|
|
shell: bash
|
|
run: |
|
|
df -h
|