feat: add support for arm/v7 architecture in Docker build

This commit is contained in:
2025-09-28 12:39:16 +02:00
parent be68e31dc3
commit e227ba9808

View File

@@ -84,7 +84,7 @@ jobs:
run: | run: |
REPO_NAME=$(echo "${{ github.repository }}" | tr '[:upper:]' '[:lower:]') REPO_NAME=$(echo "${{ github.repository }}" | tr '[:upper:]' '[:lower:]')
docker buildx build \ 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}:latest \
--tag ${{ secrets.REGISTRY }}/${REPO_NAME}:${{ env.VERSION }} \ --tag ${{ secrets.REGISTRY }}/${REPO_NAME}:${{ env.VERSION }} \
--push . --push .
@@ -117,4 +117,4 @@ jobs:
GITHUB_TOKEN: ${{ secrets.TOKEN }} GITHUB_TOKEN: ${{ secrets.TOKEN }}
GITHUB_REPOSITORY: ${{ github.repository }} GITHUB_REPOSITORY: ${{ github.repository }}