Skip to content

Commit

Permalink
Fix push docker image failure (#149)
Browse files Browse the repository at this point in the history
  • Loading branch information
mrproliu authored Oct 10, 2024
1 parent d39db69 commit e0fc8f7
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/publish-docker.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,11 +44,15 @@ jobs:
registry: ${{ env.HUB }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Clean spaces for docker images
- name: Clean spaces for docker images and show disk usage
run: |
sudo rm -rf /usr/share/dotnet
sudo rm -rf /opt/ghc
sudo rm -rf "/usr/local/share/boost"
sudo rm -rf "$AGENT_TOOLSDIRECTORY"
sudo rm -rf /usr/local/lib/android
sudo swapoff -a
sudo rm -f /mnt/swapfile
df -h /
- name: Build and push docker images
run: make docker.push

0 comments on commit e0fc8f7

Please sign in to comment.