Skip to content

Commit 1985c85

Browse files
Fixed no space left on the device error (#1109)
1 parent 738016b commit 1985c85

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

.github/workflows/release-post-merge.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,13 @@ jobs:
2121
env:
2222
IMAGE_REPOSITORY: mongodb/mongodb-atlas-kubernetes-operator
2323
steps:
24+
- name: Free disk space
25+
run: |
26+
sudo swapoff -a
27+
sudo rm -f /swapfile
28+
sudo apt clean
29+
docker rmi $(docker image ls -aq)
30+
df -h
2431
- name: Print Env and Get version
2532
id: tag
2633
env:

0 commit comments

Comments
 (0)