Skip to content

Commit

Permalink
chore: add free-disk step for docker build
Browse files Browse the repository at this point in the history
  • Loading branch information
wsxiaoys committed Oct 14, 2023
1 parent 4dbaf4f commit 444f8f0
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,21 @@ jobs:
id-token: write

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: true

# 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: false
swap-storage: true

- name: Checkout repository
uses: actions/checkout@v3
with:
Expand Down

0 comments on commit 444f8f0

Please sign in to comment.