diff --git a/README.md b/README.md index 145291a..53d1422 100644 --- a/README.md +++ b/README.md @@ -1,10 +1,11 @@ -# free-disk-space +# GitHub Actions to Free Disk Space on Ubuntu runners + A customizable GitHub Actions to free disk space on Ubuntu GitHub Actions runners. ## Example ```yaml -name: Free Disk Space +name: Free Disk Space (Ubuntu) on: push jobs: @@ -12,7 +13,15 @@ jobs: runs-on: ubuntu-latest steps: - - name: Free Disk Space + - name: Free Disk Space (Ubuntu) uses: jlumbroso/free-disk-space@main + with: + # all of these default to true, but feel free to set to + # false if necessary for your workflow + android: true + dotnet: true + haskell: true + large-packages: true + swap-storage: true ```