Skip to content

Commit 09a0a08

Browse files
committed
chore: enhance Docker workflow by adding QEMU and Buildx setup, and specify target platforms
1 parent d7805a6 commit 09a0a08

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

Diff for: .github/workflows/docker-build.yml

+7
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,12 @@ jobs:
1717
- name: Checkout repository
1818
uses: actions/checkout@v4
1919

20+
- name: Set up QEMU
21+
uses: docker/setup-qemu-action@v3
22+
23+
- name: Set up Docker Buildx
24+
uses: docker/setup-buildx-action@v3
25+
2026
- name: Log in to the Container registry
2127
uses: docker/login-action@v3
2228
with:
@@ -27,6 +33,7 @@ jobs:
2733
uses: docker/build-push-action@v5
2834
with:
2935
context: .
36+
platforms: linux/amd64,linux/arm64
3037
push: true
3138
tags: |
3239
pig4cloud/markitdown:latest

0 commit comments

Comments
 (0)