We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9deb93a commit b45186fCopy full SHA for b45186f
.github/workflows/continuous-delivery.yml
@@ -44,6 +44,12 @@ jobs:
44
id: get_tag
45
run: echo "TAG=${GITHUB_REF#refs/tags/}" >> $GITHUB_ENV
46
47
+ - name: Set up QEMU
48
+ uses: docker/setup-qemu-action@v3
49
+
50
+ - name: Set up Docker Buildx
51
+ uses: docker/setup-buildx-action@v3
52
53
- name: Log in to GitHub Container Registry
54
uses: docker/login-action@v3
55
with:
@@ -57,6 +63,7 @@ jobs:
57
63
context: .
58
64
file: Dockerfiles/Dockerfile.${{ matrix.service }}
59
65
push: true
66
+ platforms: linux/amd64,linux/arm64
60
67
tags: |
61
68
${{ env.REGISTRY }}/${{ github.repository_owner }}/${{ matrix.service }}:${{ env.TAG }}
62
- ${{ env.REGISTRY }}/${{ github.repository_owner }}/${{ matrix.service }}:latest
69
+ ${{ env.REGISTRY }}/${{ github.repository_owner }}/${{ matrix.service }}:latest
0 commit comments