Skip to content

Commit be210ea

Browse files
authored
Merge pull request #3 from atrifat/fix-storage-issue-gha
fix: storage issue in github actions space
2 parents 48f7c2e + 2ffe308 commit be210ea

File tree

1 file changed

+17
-1
lines changed

1 file changed

+17
-1
lines changed

.github/workflows/build-docker-image.yml

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,22 @@ jobs:
1616
contents: read
1717
packages: write
1818
steps:
19+
- name: Free Disk Space (Ubuntu)
20+
uses: jlumbroso/free-disk-space@v1.3.1
21+
with:
22+
# this might remove tools that are actually needed,
23+
# if set to "true" but frees about 6 GB
24+
tool-cache: false
25+
26+
# all of these default to true, but feel free to set to
27+
# "false" if necessary for your workflow
28+
android: false
29+
dotnet: false
30+
haskell: false
31+
large-packages: true
32+
docker-images: true
33+
swap-storage: true
34+
1935
- name: Checkout Repository
2036
uses: actions/checkout@v4
2137

@@ -50,4 +66,4 @@ jobs:
5066
tags: ${{ steps.meta.outputs.tags }}
5167
labels: ${{ steps.meta.outputs.labels }}
5268
cache-from: type=gha
53-
cache-to: type=gha,mode=max
69+
cache-to: type=gha,mode=max

0 commit comments

Comments
 (0)