File tree Expand file tree Collapse file tree 1 file changed +10
-10
lines changed Expand file tree Collapse file tree 1 file changed +10
-10
lines changed Original file line number Diff line number Diff line change 32
32
- name : Checkout git repository 🕝
33
33
uses : actions/checkout@v2
34
34
35
- - name : Free disk space
36
- # tries to make sure we do not run out of disk space, see
37
- # https://github.community/t5/GitHub-Actions/BUG-Strange-quot-No-space-left-on-device-quot-IOExceptions-on/td-p/46101
38
- run : |
39
- sudo swapoff -a
40
- sudo rm -f /swapfile
41
- sudo apt clean
42
- docker rmi $(docker image ls -aq)
43
- df -h
44
-
45
35
- name : Setup Node 🦝
46
36
uses : actions/setup-node@v1
47
37
with :
@@ -187,6 +177,16 @@ jobs:
187
177
- name : Checkout git repository 🕝
188
178
uses : actions/checkout@v2
189
179
180
+ - name : Free disk space
181
+ # tries to make sure we do not run out of disk space, see
182
+ # https://github.community/t5/GitHub-Actions/BUG-Strange-quot-No-space-left-on-device-quot-IOExceptions-on/td-p/46101
183
+ run : |
184
+ sudo swapoff -a
185
+ sudo rm -f /swapfile
186
+ sudo apt clean
187
+ docker rmi $(docker image ls -aq)
188
+ df -h
189
+
190
190
- name : Login to DockerHub Registry 🔢
191
191
run : echo ${{ secrets.DOCKERHUB_PASSWORD }} | docker login -u ${{ env.DOCKERHUB_USERNAME }} --password-stdin || true
192
192
You can’t perform that action at this time.
0 commit comments