Skip to content

Commit 6e42642

Browse files
build: change action.
1 parent b24f4c9 commit 6e42642

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

.github/workflows/build-and-push.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,19 @@ jobs:
3838
if: ${{ contains(github.event.inputs.registry, 'fit2cloud') }}
3939
runs-on: ubuntu-latest
4040
steps:
41+
- name: Check Disk Space
42+
run: df -h
43+
- name: Free Disk Space (Ubuntu)
44+
if: ${{ contains(github.event.inputs.architecture, ',') }}
45+
uses: jlumbroso/free-disk-space@main
46+
with:
47+
tool-cache: true
48+
android: true
49+
dotnet: true
50+
haskell: true
51+
large-packages: true
52+
docker-images: false
53+
swap-storage: false
4154
- name: Check Disk Space
4255
run: df -h
4356
- name: Checkout
@@ -86,6 +99,19 @@ jobs:
8699
if: ${{ contains(github.event.inputs.registry, 'dockerhub') }}
87100
runs-on: ubuntu-latest
88101
steps:
102+
- name: Check Disk Space
103+
run: df -h
104+
- name: Free Disk Space (Ubuntu)
105+
if: ${{ contains(github.event.inputs.architecture, ',') }}
106+
uses: jlumbroso/free-disk-space@main
107+
with:
108+
tool-cache: true
109+
android: true
110+
dotnet: true
111+
haskell: true
112+
large-packages: true
113+
docker-images: false
114+
swap-storage: false
89115
- name: Check Disk Space
90116
run: df -h
91117
- name: Checkout

0 commit comments

Comments
 (0)