We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f6d8cb8 commit 27e2821Copy full SHA for 27e2821
1 file changed
.github/workflows/ci.yml
@@ -58,6 +58,17 @@ jobs:
58
image-tag: ${{ steps.meta.outputs.tags }}
59
image-digest: ${{ steps.build.outputs.digest }}
60
steps:
61
+ - name: Free disk space
62
+ run: |
63
+ sudo rm -rf /usr/share/dotnet
64
+ sudo rm -rf /usr/local/lib/android
65
+ sudo rm -rf /opt/ghc
66
+ sudo rm -rf /opt/hostedtoolcache/CodeQL
67
+ sudo rm -rf /opt/hostedtoolcache/go
68
+ sudo rm -rf /opt/hostedtoolcache/node
69
+ docker system prune -af
70
+ df -h
71
+
72
- name: Checkout repository
73
uses: actions/checkout@v6
74
@@ -79,6 +90,9 @@ jobs:
79
90
tags: |
80
91
type=sha,prefix={{branch}}-
81
92
93
+ - name: Check disk space before build
94
+ run: df -h
95
82
96
- name: Build and push CI image
83
97
id: build
84
98
timeout-minutes: 20
0 commit comments