Skip to content

Commit

Permalink
fix(ci): Fix build docker image error (#2221)
Browse files Browse the repository at this point in the history
  • Loading branch information
fangyinc authored Dec 19, 2024
1 parent 9b0161e commit 342a89c
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/docker-image-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,13 @@ jobs:
if: github.event_name != 'pull_request'
steps:
- uses: actions/checkout@v3
- name: free disk space
run: |
sudo swapoff -a
sudo rm -f /swapfile
sudo apt clean
docker rmi $(docker image ls -aq)
df -h
- name: Set up QEMU
uses: docker/setup-qemu-action@v2
- name: Set up Docker Buildx
Expand Down

0 comments on commit 342a89c

Please sign in to comment.