Maximize disk space on GitHub Actions

Maximize disk space on GitHub Actions
This commit is contained in:
Jakub Chrzanowski
2022-08-07 21:45:51 +02:00
committed by Jakub Chrzanowski
parent 1dfd8ffe44
commit 673142938b
2 changed files with 8 additions and 0 deletions

View File

@@ -33,6 +33,13 @@ jobs:
changelog: ${{ steps.properties.outputs.changelog }}
steps:
# Free GitHub Actions Environment Disk Space
- name: Maximize Build Space
run: |
sudo rm -rf /usr/share/dotnet
sudo rm -rf /usr/local/lib/android
sudo rm -rf /opt/ghc
# Check out current repository
- name: Fetch Sources
uses: actions/checkout@v3