We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents ca44876 + 8235516 commit 62c55b3Copy full SHA for 62c55b3
1 file changed
.github/workflows/cd-build-image.yml
@@ -19,6 +19,14 @@ jobs:
19
uses: actions/checkout@v4
20
with:
21
ref: ${{ github.event.release.tag_name }}
22
+
23
+ # Enable multi-arch
24
+ - name: Set up QEMU
25
+ uses: docker/setup-qemu-action@v3
26
27
+ # Enable buildx
28
+ - name: Set up Docker Buildx
29
+ uses: docker/setup-buildx-action@v3
30
31
# Login to GHCR
32
- name: Login to GHCR
@@ -46,6 +54,7 @@ jobs:
46
54
context: .
47
55
file: ./Dockerfile
48
56
push: true
57
+ platforms: linux/amd64,linux/arm64
49
58
tags: ${{ steps.meta.outputs.tags }}
50
59
labels: ${{ steps.meta.outputs.labels }}
51
60
secrets: |
0 commit comments