From 7a317a0acdbcd2b1cbd5287a9c4d5a8c8f616769 Mon Sep 17 00:00:00 2001 From: 0xWheatyz Date: Wed, 4 Mar 2026 03:23:11 +0000 Subject: [PATCH] fix(workflow): remove docker-buildx-action for compatibility MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Remove docker/setup-buildx-action step which requires special Docker daemon configuration. Use plain docker build commands instead for better compatibility with Gitea Actions runner. This simplifies the workflow and works with the standard catthehacker/ubuntu:act-latest images that have Docker CLI pre-installed. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- .gitea/workflows/build.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml index 5c006b8..052eee0 100644 --- a/.gitea/workflows/build.yaml +++ b/.gitea/workflows/build.yaml @@ -15,9 +15,6 @@ jobs: - name: Checkout code uses: actions/checkout@v4 - - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v3 - - name: Determine image tags id: tags run: |