Skip to content

Commit

Permalink
Merge pull request #3 from atrifat/fix-storage-issue-gha
Browse files Browse the repository at this point in the history
fix: storage issue in github actions space
  • Loading branch information
atrifat authored Jun 13, 2024
2 parents 48f7c2e + 2ffe308 commit be210ea
Showing 1 changed file with 17 additions and 1 deletion.
18 changes: 17 additions & 1 deletion .github/workflows/build-docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,22 @@ jobs:
contents: read
packages: write
steps:
- name: Free Disk Space (Ubuntu)
uses: jlumbroso/[email protected]
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: false
dotnet: false
haskell: false
large-packages: true
docker-images: true
swap-storage: true

- name: Checkout Repository
uses: actions/checkout@v4

Expand Down Expand Up @@ -50,4 +66,4 @@ jobs:
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
cache-from: type=gha
cache-to: type=gha,mode=max
cache-to: type=gha,mode=max

0 comments on commit be210ea

Please sign in to comment.