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 cf46d4d commit 90bddb5Copy full SHA for 90bddb5
.github/workflows/docker-publish.yml
@@ -42,6 +42,21 @@ jobs:
42
contents: read
43
packages: write
44
steps:
45
+ - name: Free Disk Space (Ubuntu)
46
+ uses: jlumbroso/free-disk-space@main
47
+ with:
48
+ # this might remove tools that are actually needed,
49
+ # if set to "true" but frees about 6 GB
50
+ tool-cache: false
51
+
52
+ # all of these default to true, but feel free to set to
53
+ # "false" if necessary for your workflow
54
+ android: true
55
+ dotnet: true
56
+ haskell: true
57
+ large-packages: true
58
+ docker-images: true
59
+ swap-storage: true
60
- name: Set up Java
61
uses: actions/setup-java@v3
62
with:
0 commit comments