Skip to content

Commit 3cffa02

Browse files
committed
fix(ci): free disk space before Docker build to prevent out-of-space error
1 parent 27712e1 commit 3cffa02

1 file changed

Lines changed: 12 additions & 0 deletions

File tree

.github/workflows/docker-publish.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,18 @@ jobs:
3232
packages: write
3333

3434
steps:
35+
- name: Free disk space
36+
uses: jlumbroso/free-disk-space@main
37+
with:
38+
# Remove unnecessary tools to free up space
39+
tool-cache: true
40+
android: true
41+
dotnet: true
42+
haskell: true
43+
large-packages: true
44+
docker-images: true
45+
swap-storage: true
46+
3547
- name: Checkout repository
3648
uses: actions/checkout@v6
3749

0 commit comments

Comments
 (0)