Skip to content

Commit

Permalink
Merge pull request #158 from crazy-max/fix-ci
Browse files Browse the repository at this point in the history
ci: fix workflow
  • Loading branch information
crazy-max authored Sep 5, 2023
2 parents f0b60ad + f081c1d commit f32fbea
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ jobs:
-
name: Stop docker
run: |
sudo systemctl stop docker
sudo systemctl stop docker docker.socket
-
name: Build
id: bake
Expand All @@ -116,9 +116,13 @@ jobs:
name: Checkout
uses: actions/checkout@v3
-
name: Uninstall moby cli
name: Uninstall docker cli
run: |
sudo apt-get purge -y moby-cli moby-buildx
if dpkg -s "docker-ce" >/dev/null 2>&1; then
sudo dpkg -r --force-depends docker-ce-cli docker-buildx-plugin
else
sudo apt-get purge -y moby-cli moby-buildx
fi
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
Expand Down

0 comments on commit f32fbea

Please sign in to comment.