feat: Support Docker for ARM architecture(#35)

This commit is contained in:
Kuenpan Foo
2025-09-07 16:46:18 +08:00
committed by GitHub
parent dffcdb7a8b
commit 72403d5861
2 changed files with 3 additions and 3 deletions

View File

@@ -42,10 +42,10 @@ jobs:
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push Docker image
- name: Build and push Docker image (multi arch)
uses: docker/build-push-action@v5
with:
context: .
platforms: linux/amd64
platforms: linux/amd64,linux/arm64
push: true
tags: ${{ env.DOCKER_TAGS }}