mirror of
https://codeberg.org/tmayoff/.dotfiles.git
synced 2025-12-06 08:48:34 -05:00
fixed input
This commit is contained in:
parent
cbe6b4acc0
commit
b0490e530c
1 changed files with 3 additions and 3 deletions
6
.github/actions/disk_space/action.yml
vendored
6
.github/actions/disk_space/action.yml
vendored
|
|
@ -3,7 +3,7 @@ description: "Frees disk space in the GHA runner"
|
|||
inputs:
|
||||
debug:
|
||||
description: Enabling this will print before and after disk sizes
|
||||
default: false
|
||||
default: 'false'
|
||||
required: false
|
||||
|
||||
runs:
|
||||
|
|
@ -15,7 +15,7 @@ runs:
|
|||
df -h
|
||||
|
||||
- name: Detailed usage
|
||||
if: inputs.debug == true
|
||||
if: inputs.debug == 'true'
|
||||
shell: bash
|
||||
run: |
|
||||
du -h -d3 / 2>/dev/null | sort -hr | head -n 20 || true
|
||||
|
|
@ -34,7 +34,7 @@ runs:
|
|||
df -h
|
||||
|
||||
- name: Detailed usage
|
||||
if: inputs.debug == true
|
||||
if: inputs.debug == 'true'
|
||||
shell: bash
|
||||
run: |
|
||||
du -h -d3 / 2>/dev/null | sort -hr | head -n 20 || true
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue