From 277d671d9fb7b4e0d9fec1efe14dccfec75f074f Mon Sep 17 00:00:00 2001 From: SpecialX <47072643+wangxiner55@users.noreply.github.com> Date: Fri, 19 Dec 2025 14:55:47 +0800 Subject: [PATCH] fix: remove invalid docker binary mount and reinstall cli --- .gitea/workflows/ci.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index e45f3ff..2455b5d 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -50,12 +50,16 @@ jobs: image: dockerreg.eazygame.cn/node:22-bookworm volumes: - /var/run/docker.sock:/var/run/docker.sock - - /usr/bin/docker:/usr/bin/docker steps: - name: Download artifacts uses: actions/download-artifact@v3 with: name: next-build + + - name: Install Docker CLI + run: | + apt-get update + apt-get install -y docker.io - name: Deploy to Docker run: |