Update github-actions-builddockerfile.yml

This commit is contained in:
McCloudS
2024-02-05 23:43:36 -07:00
committed by GitHub
parent 74b80bbdd7
commit b2e6e4e689

View File

@@ -15,6 +15,13 @@ jobs:
steps:
- name: Delete huge unnecessary tools folder
run: rm -rf /opt/hostedtoolcache
- name: free disk space
run: |
sudo swapoff -a
sudo rm -f /swapfile
sudo apt clean
docker rmi $(docker image ls -aq)
df -h
- name: Setup Docker buildx
uses: docker/setup-buildx-action@v2
-