Skip to content

Commit

Permalink
🎨 Free disk space for docker image building GitHub Action
Browse files Browse the repository at this point in the history
  • Loading branch information
88250 committed Oct 4, 2023
1 parent 642d041 commit 66aa802
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/dockerimage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 66aa802

Please sign in to comment.