We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f6b4958 commit 4f583a2Copy full SHA for 4f583a2
1 file changed
.github/workflows/dockerhub-publish.yml
@@ -16,6 +16,11 @@ jobs:
16
- name: Checkout
17
uses: actions/checkout@v4
18
19
+ - name: Set up QEMU (multi-arch emulation)
20
+ uses: docker/setup-qemu-action@v3
21
+ with:
22
+ platforms: all
23
+
24
- name: Set up Docker Buildx
25
uses: docker/setup-buildx-action@v3
26
@@ -45,7 +50,7 @@ jobs:
45
50
push: ${{ github.event_name != 'pull_request' }}
46
51
tags: ${{ steps.meta.outputs.tags }}
47
52
labels: ${{ steps.meta.outputs.labels }}
48
- platforms: linux/amd64
53
+ platforms: linux/amd64,linux/arm64
49
54
cache-from: type=gha
55
cache-to: type=gha,mode=max
56
0 commit comments