chore: free skip space during release
Some checks failed
Release a tag / release (push) Has been cancelled

This commit is contained in:
Fernandez Ludovic 2024-08-14 03:09:25 +02:00
parent 1147824c61
commit 3298c10480

View File

@ -15,6 +15,28 @@ jobs:
GO_VERSION: '1.23' GO_VERSION: '1.23'
CHOCOLATEY_VERSION: 2.2.0 CHOCOLATEY_VERSION: 2.2.0
steps: steps:
# temporary workaround for an error in free disk space action
# https://github.com/jlumbroso/free-disk-space/issues/14
- name: Update Package List and Remove Dotnet
run: |
sudo apt-get update
sudo apt-get remove -y '^dotnet-.*'
# https://github.com/marketplace/actions/free-disk-space-ubuntu
- name: Free Disk Space
uses: jlumbroso/free-disk-space@main
with:
# this might remove tools that are actually needed
tool-cache: false
# all of these default to true
android: true
dotnet: true
haskell: true
large-packages: true
docker-images: true
swap-storage: false
- uses: actions/checkout@v4 - uses: actions/checkout@v4
with: with:
fetch-depth: 0 fetch-depth: 0