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 48f7c2e commit 2ffe308Copy full SHA for 2ffe308
.github/workflows/build-docker-image.yml
@@ -16,6 +16,22 @@ jobs:
16
contents: read
17
packages: write
18
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
35
- name: Checkout Repository
36
uses: actions/checkout@v4
37
@@ -50,4 +66,4 @@ jobs:
50
66
tags: ${{ steps.meta.outputs.tags }}
51
67
labels: ${{ steps.meta.outputs.labels }}
52
68
cache-from: type=gha
53
- cache-to: type=gha,mode=max
69
+ cache-to: type=gha,mode=max
0 commit comments