🎨 Free disk space for docker image building GitHub Action
This commit is contained in:
parent
642d041513
commit
66aa802765
1 changed files with 15 additions and 0 deletions
15
.github/workflows/dockerimage.yml
vendored
15
.github/workflows/dockerimage.yml
vendored
|
@ -16,6 +16,21 @@ jobs:
|
|||
contents: read
|
||||
|
||||
steps:
|
||||
- name: Free Disk Space (Ubuntu)
|
||||
uses: jlumbroso/free-disk-space@main
|
||||
with:
|
||||
# this might remove tools that are actually needed,
|
||||
# if set to "true" but frees about 6 GB
|
||||
tool-cache: false
|
||||
|
||||
# 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
|
||||
docker-images: true
|
||||
swap-storage: true
|
||||
- name: Check out the repo
|
||||
uses: actions/checkout@v3
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue