From e227ba9808a526867b9b277237f2059867984256 Mon Sep 17 00:00:00 2001 From: WorldTeacher Date: Sun, 28 Sep 2025 12:39:16 +0200 Subject: [PATCH] feat: add support for arm/v7 architecture in Docker build --- .gitea/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/release.yml b/.gitea/workflows/release.yml index 95f050b..4eac1e4 100644 --- a/.gitea/workflows/release.yml +++ b/.gitea/workflows/release.yml @@ -84,7 +84,7 @@ jobs: run: | REPO_NAME=$(echo "${{ github.repository }}" | tr '[:upper:]' '[:lower:]') docker buildx build \ - --platform linux/amd64,linux/arm64 \ + --platform linux/amd64,linux/arm64,linux/arm/v7 \ --tag ${{ secrets.REGISTRY }}/${REPO_NAME}:latest \ --tag ${{ secrets.REGISTRY }}/${REPO_NAME}:${{ env.VERSION }} \ --push . @@ -117,4 +117,4 @@ jobs: GITHUB_TOKEN: ${{ secrets.TOKEN }} GITHUB_REPOSITORY: ${{ github.repository }} - + -- 2.49.1