chore: free skip space during release
Some checks failed
Release a tag / release (push) Has been cancelled
Some checks failed
Release a tag / release (push) Has been cancelled
This commit is contained in:
parent
1147824c61
commit
3298c10480
22
.github/workflows/tag.yml
vendored
22
.github/workflows/tag.yml
vendored
@ -15,6 +15,28 @@ jobs:
|
||||
GO_VERSION: '1.23'
|
||||
CHOCOLATEY_VERSION: 2.2.0
|
||||
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
|
||||
with:
|
||||
fetch-depth: 0
|
||||
|
Loading…
x
Reference in New Issue
Block a user