Skip to content

Commit f3e185d

Browse files
committed
feat: multi-arch Docker build (amd64 + arm64)
1 parent 51aa62e commit f3e185d

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

.github/workflows/release.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,12 @@ jobs:
3434
username: ${{ github.actor }}
3535
password: ${{ secrets.GITHUB_TOKEN }}
3636

37+
- name: Set up QEMU
38+
uses: docker/setup-qemu-action@v3
39+
40+
- name: Set up Docker Buildx
41+
uses: docker/setup-buildx-action@v3
42+
3743
- name: Extract metadata
3844
id: meta
3945
uses: docker/metadata-action@v5
@@ -50,6 +56,7 @@ jobs:
5056
uses: docker/build-push-action@v6
5157
with:
5258
context: .
59+
platforms: linux/amd64,linux/arm64
5360
push: true
5461
tags: ${{ steps.meta.outputs.tags }}
5562
labels: ${{ steps.meta.outputs.labels }}

0 commit comments

Comments
 (0)