2024-07-16 14:13:40 +00:00
|
|
|
name: List Storage Space
|
|
|
|
on: [workflow_dispatch]
|
|
|
|
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
storage-space:
|
2024-07-16 14:20:29 +00:00
|
|
|
runs-on: ubuntu-22.04
|
2024-07-16 14:13:40 +00:00
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Root
|
|
|
|
run: |
|
|
|
|
df -h
|
|
|
|
cd /
|
|
|
|
du -h --max-depth=1 / | sort -h
|
|
|
|
- name: /usr
|
|
|
|
run: |
|
|
|
|
cd /usr
|
|
|
|
du -h --max-depth=1 / | sort -h
|
|
|
|
- name: /usr/bin
|
|
|
|
run: |
|
|
|
|
cd /usr/bin
|
|
|
|
du -h --max-depth=1 / | sort -h
|
|
|
|
- name: /usr/local
|
|
|
|
run: |
|
|
|
|
cd /usr/local
|
|
|
|
du -h --max-depth=1 / | sort -h
|
|
|
|
- name: /usr/share
|
|
|
|
run: |
|
|
|
|
cd /usr/share
|
|
|
|
du -h --max-depth=1 / | sort -h
|
|
|
|
- name: /opt
|
|
|
|
run: |
|
|
|
|
cd /opt
|
|
|
|
du -h --max-depth=1 / | sort -h
|
|
|
|
- name: /opt/hostedtoolcache
|
|
|
|
run: |
|
|
|
|
cd /opt/hostedtoolcache
|
|
|
|
du -h --max-depth=1 / | sort -h
|